From cdb5505d547d989cc18b7be2d01ad8b64906eb4c Mon Sep 17 00:00:00 2001 From: Meaghan Harty <1829246+meagonqz@users.noreply.github.com> Date: Fri, 19 Jul 2019 17:08:37 -0400 Subject: [PATCH] Schedules | Finder Tool - Trip Details (#99) --- apps/site/assets/css/_accordion-ui.scss | 6 + apps/site/assets/css/_modal-component.scss | 2 + apps/site/assets/css/_schedule-page.scss | 70 + .../schedule/__tests__/ScheduleFinderTest.tsx | 173 +- .../schedule/__tests__/ScheduleTableTest.tsx | 71 +- .../__tests__/ServiceSelectorTest.tsx | 3 - .../__snapshots__/ScheduleTableTest.tsx.snap | 17711 ++++++++++------ .../ServiceSelectorTest.tsx.snap | 8 +- .../ts/schedule/__tests__/crServiceData.json | 2 +- .../ts/schedule/__tests__/serviceData.json | 2 +- .../ts/schedule/components/__schedule.d.ts | 19 +- .../schedule-finder/ScheduleTable.tsx | 55 + .../schedule-finder/ServiceSelector.tsx | 93 +- .../components/schedule-finder/TableRow.tsx | 219 + apps/site/lib/site/base_fare.ex | 13 +- .../controllers/schedule/schedule_api.ex | 92 +- .../schedule/schedule_api_test.exs | 59 + 17 files changed, 12344 insertions(+), 6254 deletions(-) create mode 100644 apps/site/assets/ts/schedule/components/schedule-finder/ScheduleTable.tsx create mode 100644 apps/site/assets/ts/schedule/components/schedule-finder/TableRow.tsx create mode 100644 apps/site/test/site_web/controllers/schedule/schedule_api_test.exs diff --git a/apps/site/assets/css/_accordion-ui.scss b/apps/site/assets/css/_accordion-ui.scss index 80961cbca2..512cda6b77 100644 --- a/apps/site/assets/css/_accordion-ui.scss +++ b/apps/site/assets/css/_accordion-ui.scss @@ -108,6 +108,12 @@ font-family: FontAwesome; } +.c-expandable-block__header-caret--white { + color: $white; + float: right; + font-family: FontAwesome; +} + .c-expandable-block__panel { border: 1px solid $gray-lightest; padding: $base-spacing $base-spacing / 2; diff --git a/apps/site/assets/css/_modal-component.scss b/apps/site/assets/css/_modal-component.scss index d37cd3b02f..8ed187759c 100644 --- a/apps/site/assets/css/_modal-component.scss +++ b/apps/site/assets/css/_modal-component.scss @@ -36,6 +36,7 @@ left: 50%; transform: translate(-50%, -50%); width: 75%; + min-height: 50%; } @include media-breakpoint-up(lg) { @@ -51,6 +52,7 @@ .c-modal__close { margin: $base-spacing; + padding: $base-spacing / 4; position: absolute; right: 0; top: 0; diff --git a/apps/site/assets/css/_schedule-page.scss b/apps/site/assets/css/_schedule-page.scss index e35ef51ec5..cc3ec0105a 100644 --- a/apps/site/assets/css/_schedule-page.scss +++ b/apps/site/assets/css/_schedule-page.scss @@ -288,6 +288,15 @@ justify-content: space-between; } +// Separate class instead of modifier to avoid complicated nth-child selector +.schedule-table__row-selected { + background: $brand-primary; + border: 1px solid $brand-primary; + color: $white; + display: flex; + padding: $base-spacing / 2; +} + .schedule-table__row:nth-child(even) { background: $gray-bordered-background; } @@ -305,6 +314,7 @@ .schedule-table__time { font-variant-numeric: tabular-nums; text-align: right; + white-space: nowrap; &--delayed { font-weight: normal; @@ -319,6 +329,7 @@ display: flex; font-weight: bold; justify-content: space-between; + overflow: hidden; } .schedule-table__row-header-label { @@ -371,6 +382,10 @@ padding: $base-spacing / 2; } +.schedule-finder__spinner-container { + height: 20 * $base-spacing; +} + .schedule-finder__spinner, .schedule-finder__spinner::before, .schedule-finder__spinner::after { @@ -418,3 +433,58 @@ box-shadow: 0 2.5em 0 0; } } + +.schedule-table__subtable { + width: 100%; +} + +.schedule-table__subtable-trip-info { + display: flex; +} + +.schedule-table__subtable-trip-info-title { + margin-right: $base-spacing; +} + +.schedule-table__subtable-trip-info-link { + margin-left: $base-spacing; +} + +.schedule-table__subtable-tr { + display: flex; + padding: $base-spacing / 2; +} + +.schedule-table__subtable-container { + display: flex; +} + +.schedule-table__subtable-data { + padding: $base-spacing / 4 0; + + &--right-adjusted { + text-align: right; + } +} + +.schedule-table__subtable-row { + border-top: 1px solid $gray-lightest; +} + +.schedule-table__subtable-td { + border: 2px solid $brand-primary; + border-top: 0; + padding: $base-spacing / 2; + width: 100%; +} + +.schedule-table__td--flex-end { + flex-grow: 1; + margin-right: $base-spacing / 2; +} + +.schedule-table--empty { + font-weight: bold; + text-align: center; +} + diff --git a/apps/site/assets/ts/schedule/__tests__/ScheduleFinderTest.tsx b/apps/site/assets/ts/schedule/__tests__/ScheduleFinderTest.tsx index e1ab71b8c0..dc8ea729c4 100644 --- a/apps/site/assets/ts/schedule/__tests__/ScheduleFinderTest.tsx +++ b/apps/site/assets/ts/schedule/__tests__/ScheduleFinderTest.tsx @@ -3,6 +3,7 @@ import renderer from "react-test-renderer"; import { mount } from "enzyme"; import { createReactRoot } from "../../app/helpers/testUtils"; import ScheduleFinder from "../components/ScheduleFinder"; +import ScheduleFinderAccordion from "../components/ScheduleFinderAccordion"; import { EnhancedRoute, ServiceWithServiceDate } from "../../__v3api"; import serviceData from "./serviceData.json"; import { ServiceSchedule } from "../components/__schedule"; @@ -12,12 +13,12 @@ const services: ServiceWithServiceDate[] = [ valid_days: [1, 2, 3, 4, 5], typicality: "typical_service", type: "weekday", - start_date: "2019-07-02", - service_date: "2019-07-09", - removed_dates_notes: { "2019-07-04": "Independence Day" }, - removed_dates: ["2019-07-04"], + start_date: "2019-07-08", + service_date: "2019-07-16", + removed_dates_notes: {}, + removed_dates: [], name: "Weekday", - id: "BUS319-O-Wdy-02", + id: "BUS319-J-Wdy-02", end_date: "2019-08-30", description: "Weekday schedule", added_dates_notes: {}, @@ -27,12 +28,12 @@ const services: ServiceWithServiceDate[] = [ valid_days: [6], typicality: "typical_service", type: "saturday", - start_date: "2019-07-06", - service_date: "2019-07-09", + start_date: "2019-07-13", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Saturday", - id: "BUS319-P-Sa-02", + id: "BUS319-K-Sa-02", end_date: "2019-08-31", description: "Saturday schedule", added_dates_notes: {}, @@ -42,19 +43,19 @@ const services: ServiceWithServiceDate[] = [ valid_days: [7], typicality: "typical_service", type: "sunday", - start_date: "2019-07-07", - service_date: "2019-07-09", + start_date: "2019-07-14", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Sunday", - id: "BUS319-Q-Su-02", + id: "BUS319-L-Su-02", end_date: "2019-08-25", description: "Sunday schedule", added_dates_notes: {}, added_dates: [] } -] as ServiceWithServiceDate[]; -const serviceSchedules: ServiceSchedule = (serviceData as unknown) as ServiceSchedule; +]; +const serviceSchedules: ServiceSchedule = serviceData as ServiceSchedule; // the enzyme test was done as one test because there was // an issue mounting it more than once due to the focus-trap // dependency that the Modal component depends on @@ -314,3 +315,149 @@ it("modal renders route pill for silver line", () => { expect(busWrapper.exists(".schedule-finder__modal-route-pill")).toBeTruthy(); expect(busWrapper.exists(".u-bg--silver-line")).toBeTruthy(); }); + +it("modal renders within ScheduleFinderAccordion", () => { + const subwayWrapper = mount( + + ); + + subwayWrapper.find("#header-schedule-finder-mobile").simulate("click"); + + subwayWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "1" } }); + + subwayWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + subwayWrapper.find("input").simulate("click"); + + expect( + subwayWrapper.exists(".schedule-finder__modal-route-pill") + ).toBeFalsy(); + + const busRoute: EnhancedRoute = { ...route, id: "741", name: "SL", type: 3 }; + const busWrapper = mount( + + ); + busWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "0" } }); + + busWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + busWrapper.find("input").simulate("click"); + + expect(busWrapper.exists(".schedule-finder__modal-route-pill")).toBeTruthy(); + expect(busWrapper.exists(".u-bg--silver-line")).toBeTruthy(); +}); + +it("modal renders route pill for silver line", () => { + const subwayWrapper = mount( + + ); + subwayWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "1" } }); + + subwayWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + subwayWrapper.find("input").simulate("click"); + + expect( + subwayWrapper.exists(".schedule-finder__modal-route-pill") + ).toBeFalsy(); + + const busRoute: EnhancedRoute = { ...route, id: "741", name: "SL", type: 3 }; + const busWrapper = mount( + + ); + busWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "0" } }); + + busWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + busWrapper.find("input").simulate("click"); + + expect(busWrapper.exists(".schedule-finder__modal-route-pill")).toBeTruthy(); + expect(busWrapper.exists(".u-bg--silver-line")).toBeTruthy(); +}); +it("modal renders route pill for silver line", () => { + const subwayWrapper = mount( + + ); + subwayWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "1" } }); + + subwayWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + subwayWrapper.find("input").simulate("click"); + + expect( + subwayWrapper.exists(".schedule-finder__modal-route-pill") + ).toBeFalsy(); + + const busRoute: EnhancedRoute = { ...route, id: "741", name: "SL", type: 3 }; + const busWrapper = mount( + + ); + busWrapper + .find("#sf_direction_select") + .simulate("change", { target: { value: "0" } }); + + busWrapper + .find("#sf_origin_select") + .simulate("change", { target: { value: "place-welln" } }); + + busWrapper.find("input").simulate("click"); + + expect(busWrapper.exists(".schedule-finder__modal-route-pill")).toBeTruthy(); + expect(busWrapper.exists(".u-bg--silver-line")).toBeTruthy(); +}); diff --git a/apps/site/assets/ts/schedule/__tests__/ScheduleTableTest.tsx b/apps/site/assets/ts/schedule/__tests__/ScheduleTableTest.tsx index 2323001006..37a2deacf2 100644 --- a/apps/site/assets/ts/schedule/__tests__/ScheduleTableTest.tsx +++ b/apps/site/assets/ts/schedule/__tests__/ScheduleTableTest.tsx @@ -1,23 +1,26 @@ import React from "react"; -import renderer from "react-test-renderer"; -import { createReactRoot } from "../../app/helpers/testUtils"; import serviceData from "./serviceData.json"; import crServiceData from "./crServiceData.json"; -import { ScheduleTable } from "../components/schedule-finder/ServiceSelector"; +import ScheduleTable from "../components/schedule-finder/ScheduleTable"; import { ServiceSchedule } from "../components/__schedule.js"; import { ServiceWithServiceDate } from "../../__v3api"; +import { mount } from "enzyme"; +import { + createReactRoot, + enzymeToJsonWithoutProps +} from "../../app/helpers/testUtils"; const services: ServiceWithServiceDate[] = [ { valid_days: [1, 2, 3, 4, 5], typicality: "typical_service", type: "weekday", - start_date: "2019-07-02", - service_date: "2019-07-09", - removed_dates_notes: { "2019-07-04": "Independence Day" }, - removed_dates: ["2019-07-04"], + start_date: "2019-07-08", + service_date: "2019-07-16", + removed_dates_notes: {}, + removed_dates: [], name: "Weekday", - id: "BUS319-O-Wdy-02", + id: "BUS319-J-Wdy-02", end_date: "2019-08-30", description: "Weekday schedule", added_dates_notes: {}, @@ -27,12 +30,12 @@ const services: ServiceWithServiceDate[] = [ valid_days: [6], typicality: "typical_service", type: "saturday", - start_date: "2019-07-06", - service_date: "2019-07-09", + start_date: "2019-07-13", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Saturday", - id: "BUS319-P-Sa-02", + id: "BUS319-K-Sa-02", end_date: "2019-08-31", description: "Saturday schedule", added_dates_notes: {}, @@ -42,18 +45,19 @@ const services: ServiceWithServiceDate[] = [ valid_days: [7], typicality: "typical_service", type: "sunday", - start_date: "2019-07-07", - service_date: "2019-07-09", + start_date: "2019-07-14", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Sunday", - id: "BUS319-Q-Su-02", + id: "BUS319-L-Su-02", end_date: "2019-08-25", description: "Sunday schedule", added_dates_notes: {}, added_dates: [] } -] as ServiceWithServiceDate[]; +]; + const serviceSchedules: ServiceSchedule = (serviceData as unknown) as ServiceSchedule; const crServices: ServiceWithServiceDate[] = [ @@ -61,10 +65,10 @@ const crServices: ServiceWithServiceDate[] = [ valid_days: [1, 2, 3, 4, 5], typicality: "typical_service", type: "weekday", - start_date: "2019-07-02", - service_date: "2019-07-09", - removed_dates_notes: { "2019-07-04": "Independence Day" }, - removed_dates: ["2019-07-04"], + start_date: "2019-07-08", + service_date: "2019-07-16", + removed_dates_notes: {}, + removed_dates: [], name: "Weekday", id: "CR-Wdy-Kingston-Spr-19", end_date: "2019-08-30", @@ -76,8 +80,8 @@ const crServices: ServiceWithServiceDate[] = [ valid_days: [6], typicality: "typical_service", type: "saturday", - start_date: "2019-07-06", - service_date: "2019-07-09", + start_date: "2019-07-13", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Saturday", @@ -91,8 +95,8 @@ const crServices: ServiceWithServiceDate[] = [ valid_days: [7], typicality: "typical_service", type: "sunday", - start_date: "2019-07-07", - service_date: "2019-07-09", + start_date: "2019-07-14", + service_date: "2019-07-16", removed_dates_notes: {}, removed_dates: [], name: "Sunday", @@ -103,22 +107,31 @@ const crServices: ServiceWithServiceDate[] = [ added_dates: [] } ]; + const crServiceSchedules: ServiceSchedule = crServiceData as ServiceSchedule; describe("ScheduleTable", () => { it("it renders", () => { createReactRoot(); - const tree = renderer.create( - + const wrapper = mount( + ); - expect(tree).toMatchSnapshot(); + wrapper + .find(".schedule-table__row") + .first() + .simulate("click"); + expect(enzymeToJsonWithoutProps(wrapper)).toMatchSnapshot(); }); it("it renders CR schedules", () => { createReactRoot(); - const tree = renderer.create( - + const wrapper = mount( + ); - expect(tree).toMatchSnapshot(); + wrapper + .find(".schedule-table__row") + .first() + .simulate("click"); + expect(enzymeToJsonWithoutProps(wrapper)).toMatchSnapshot(); }); }); diff --git a/apps/site/assets/ts/schedule/__tests__/ServiceSelectorTest.tsx b/apps/site/assets/ts/schedule/__tests__/ServiceSelectorTest.tsx index 3b13d0386c..d33bf4e1ad 100644 --- a/apps/site/assets/ts/schedule/__tests__/ServiceSelectorTest.tsx +++ b/apps/site/assets/ts/schedule/__tests__/ServiceSelectorTest.tsx @@ -1,12 +1,10 @@ import React from "react"; import renderer from "react-test-renderer"; import { createReactRoot } from "../../app/helpers/testUtils"; -import serviceData from "./serviceData.json"; import { fetchSchedule, ServiceSelector } from "../components/schedule-finder/ServiceSelector"; -import { ServiceSchedule } from "../components/__schedule.js"; import { ServiceWithServiceDate } from "../../__v3api"; const services: ServiceWithServiceDate[] = [ @@ -69,7 +67,6 @@ const services: ServiceWithServiceDate[] = [ added_dates: [] } ] as ServiceWithServiceDate[]; -const serviceSchedules: ServiceSchedule = serviceData as ServiceSchedule; describe("ServiceSelector", () => { it("it renders", () => { diff --git a/apps/site/assets/ts/schedule/__tests__/__snapshots__/ScheduleTableTest.tsx.snap b/apps/site/assets/ts/schedule/__tests__/__snapshots__/ScheduleTableTest.tsx.snap index 135abb6355..d5e9341bb7 100644 --- a/apps/site/assets/ts/schedule/__tests__/__snapshots__/ScheduleTableTest.tsx.snap +++ b/apps/site/assets/ts/schedule/__tests__/__snapshots__/ScheduleTableTest.tsx.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`ScheduleTable it renders 1`] = ` -Array [ +
@@ -17,7 +17,7 @@ Array [ Last Trip
01:02 AM - , + @@ -40,5710 +40,10704 @@ Array [ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -
- 05:36 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:46 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:55 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:03 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:10 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:17 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:24 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:31 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:37 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:43 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:49 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:54 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:59 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:03 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:05 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:09 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:10 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:13 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:14 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:19 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:21 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:24 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:26 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:27 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:32 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:33 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:37 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:39 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:42 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:44 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:46 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:50 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:51 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:55 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:57 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:59 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:01 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:03 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:07 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:08 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:12 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:15 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:17 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:21 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:22 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:25 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:26 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:31 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:33 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:35 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:38 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:39 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:43 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:45 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:48 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:51 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:53 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:56 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:57 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:03 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:05 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:09 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:13 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:14 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:20 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:23 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:27 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:31 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:33 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:39 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:40 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:50 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:05 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:17 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 10:20 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:35 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:44 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 10:50 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:56 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 11:05 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:20 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:35 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:50 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:53 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 12:05 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:08 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 12:14 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:24 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:34 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:36 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 12:44 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:54 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:02 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 01:04 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:14 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:23 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 01:24 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:32 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 01:34 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:44 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:54 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:04 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:14 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:24 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:33 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:38 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 02:43 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 02:53 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:02 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:12 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:23 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:32 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:42 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 03:45 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 03:52 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 03:53 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:01 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:03 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:09 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:13 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:19 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:22 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:24 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:27 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:31 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:33 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:38 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:39 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:43 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:45 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:48 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:51 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:53 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 04:54 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 04:58 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:00 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:03 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:06 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:08 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:12 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:13 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:18 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:20 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:23 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:27 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:28 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:32 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:33 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:38 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:41 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:43 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:47 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:48 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:53 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 05:55 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 05:58 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:01 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 06:02 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:07 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:09 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 06:12 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:16 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 06:17 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:22 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:23 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 06:27 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:32 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:37 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:42 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:47 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:52 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 06:57 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:02 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:06 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:12 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:17 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:23 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:25 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:29 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:38 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:46 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 07:49 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:53 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 07:59 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:09 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:18 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:25 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:38 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 08:48 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 08:51 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:04 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:17 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:30 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:43 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 09:48 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 09:56 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:09 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:12 PM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 10:22 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:35 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 10:48 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:01 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:14 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:29 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:44 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 11:59 PM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:14 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:24 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
- 12:30 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 12:50 AM - -
-
-
- SL2 -
-
-
- Drydock -
- 01:02 AM - -
-
-
- Silver Line Way - South Station -
-
-
- Silver Line Way -
+ 05:36 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ Trip length +
+ 4 + stops, + 6 + minutes total +
+
+
+ Fare +
+ $2.40 + + View fares + +
+
+ Stops + + Arrival +
+ + South Station + + + 05:36 AM +
+ + Courthouse + + + 05:38 AM +
+ + World Trade Center + + + 05:40 AM +
+ + Silver Line Way after Manulife Building + + + 05:42 AM +
+
+ 05:46 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:55 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:03 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:10 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:17 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:24 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:31 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:37 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:43 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:49 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:54 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:59 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:03 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:05 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:09 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:10 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:13 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:14 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:19 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:21 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:24 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:26 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:27 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:32 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:33 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:37 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:39 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:42 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:44 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:46 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:50 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:51 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:55 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:57 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:59 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:01 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:03 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:07 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:08 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:12 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:15 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:17 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:21 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:22 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:25 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:26 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:31 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:33 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:35 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:38 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:39 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:43 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:45 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:48 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:51 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:53 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:56 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:57 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:03 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:05 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:09 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:13 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:14 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:20 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:23 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:27 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:31 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:33 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:39 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:40 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:50 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:05 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:17 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 10:20 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:35 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:44 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 10:50 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:56 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 11:05 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:20 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:35 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:50 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:53 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 12:05 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:08 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 12:14 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:24 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:34 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:36 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 12:44 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:54 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:02 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 01:04 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:14 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:23 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 01:24 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:32 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 01:34 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:44 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:54 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:04 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:14 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:24 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:33 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:38 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 02:43 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 02:53 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:02 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:12 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:23 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:32 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:42 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 03:45 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 03:52 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 03:53 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:01 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:03 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:09 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:13 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:19 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:22 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:24 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:27 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:31 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:33 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:38 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:39 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:43 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:45 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:48 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:51 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:53 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 04:54 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 04:58 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:00 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:03 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:06 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:08 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:12 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:13 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:18 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:20 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:23 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:27 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:28 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:32 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:33 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:38 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:41 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:43 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:47 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:48 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:53 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 05:55 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 05:58 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:01 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 06:02 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:07 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:09 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 06:12 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:16 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 06:17 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:22 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:23 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 06:27 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:32 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:37 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:42 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:47 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:52 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 06:57 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:02 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:06 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:12 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:17 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:23 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:25 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:29 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:38 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:46 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 07:49 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:53 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 07:59 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:09 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:18 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:25 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:38 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 08:48 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 08:51 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:04 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:17 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:30 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:43 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 09:48 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 09:56 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:09 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:12 PM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 10:22 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:35 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 10:48 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:01 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:14 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:29 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:44 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 11:59 PM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:14 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:24 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
+ 12:30 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 12:50 AM + +
+ +
+
+ SL2 +
+
+
+
+ Drydock +
+ +
+ 01:02 AM + +
+ +
+
+ Silver Line Way - South Station +
+
+
+
+ Silver Line Way +
+ +
, -] + +
`; exports[`ScheduleTable it renders CR schedules 1`] = ` -Array [ +
@@ -5759,7 +10753,7 @@ Array [ Last Trip
10:40 PM - , + @@ -5787,403 +10781,918 @@ Array [ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -
-
- 07:11 AM -
-
- 033 - -
-
- 08:56 AM -
-
- 061 - -
-
- 10:50 AM -
-
- 063 - -
-
- 12:25 PM -
-
- 065 - -
-
- 02:47 PM -
-
- 041 - -
-
- 04:20 PM -
-
- 043 - -
-
- 05:00 PM -
-
- 045 - -
-
- 05:38 PM -
-
- 047 - -
-
- 06:15 PM -
-
- 067 - -
-
- 07:29 PM -
-
- 051 - -
-
- 09:30 PM -
-
- 055 - -
-
- 10:40 PM -
-
- 057 - -
+
+ 07:11 AM +
+
+ 033 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ Trip length +
+ 8 + stops, + 61 + minutes total +
+
+
+ Fare +
+ $12.25 + + View fares + +
+
+ Stops + + Fare + + Arrival +
+ + South Station + + + + 07:11 AM +
+ + Braintree + + + $7.00 + + 07:32 AM +
+ + South Weymouth + + + $8.00 + + 07:39 AM +
+ + Abington + + + $8.75 + + 07:44 AM +
+ + Whitman + + + $9.75 + + 07:47 AM +
+ + Hanson + + + $10.50 + + 07:57 AM +
+ + Halifax + + + $11.00 + + 08:02 AM +
+ + Kingston + + + $12.25 + + 08:12 AM +
+
+
+ 08:56 AM +
+
+ 061 + + + +
+
+ 10:50 AM +
+
+ 063 + + + +
+
+ 12:25 PM +
+
+ 065 + + + +
+
+ 02:47 PM +
+
+ 041 + + + +
+
+ 04:20 PM +
+
+ 043 + + + +
+
+ 05:00 PM +
+
+ 045 + + + +
+
+ 05:38 PM +
+
+ 047 + + + +
+
+ 06:15 PM +
+
+ 067 + + + +
+
+ 07:29 PM +
+
+ 051 + + + +
+
+ 09:30 PM +
+
+ 055 + + + +
+
+ 10:40 PM +
+
+ 057 + + + +
, -] + +
`; diff --git a/apps/site/assets/ts/schedule/__tests__/__snapshots__/ServiceSelectorTest.tsx.snap b/apps/site/assets/ts/schedule/__tests__/__snapshots__/ServiceSelectorTest.tsx.snap index 590fa2acce..a25a24a2a9 100644 --- a/apps/site/assets/ts/schedule/__tests__/__snapshots__/ServiceSelectorTest.tsx.snap +++ b/apps/site/assets/ts/schedule/__tests__/__snapshots__/ServiceSelectorTest.tsx.snap @@ -73,9 +73,13 @@ Array [ ,
- Loading... +
+ Loading... +
, ] `; diff --git a/apps/site/assets/ts/schedule/__tests__/crServiceData.json b/apps/site/assets/ts/schedule/__tests__/crServiceData.json index 8addd3475f..1adb5d0d88 100644 --- a/apps/site/assets/ts/schedule/__tests__/crServiceData.json +++ b/apps/site/assets/ts/schedule/__tests__/crServiceData.json @@ -1 +1 @@ -{"CR-Wdy-Kingston-Spr-19":{"0":{"trip_order":["CR-Weekday-Spring-19-033","CR-Weekday-Spring-19-061","CR-Weekday-Spring-19-063","CR-Weekday-Spring-19-065","CR-Weekday-Spring-19-041","CR-Weekday-Spring-19-043","CR-Weekday-Spring-19-045","CR-Weekday-Spring-19-047","CR-Weekday-Spring-19-067","CR-Weekday-Spring-19-051","CR-Weekday-Spring-19-055","CR-Weekday-Spring-19-057"],"by_trip":{"CR-Weekday-Spring-19-067":[{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:15 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:48 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:53 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:58 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"07:11 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"07:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-065":[{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-063":[{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-061":[{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-057":[{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:15 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-055":[{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-051":[{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-047":[{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:09 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:18 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:35 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-045":[{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:19 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:35 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:40 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:45 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:57 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-043":[{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:47 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:52 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:01 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:06 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-041":[{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-033":[{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["CR-Weekday-Spring-19-032","CR-Weekday-Spring-19-034","CR-Weekday-Spring-19-036","CR-Weekday-Spring-19-038","CR-Weekday-Spring-19-040","CR-Weekday-Spring-19-060","CR-Weekday-Spring-19-062","CR-Weekday-Spring-19-064","CR-Weekday-Spring-19-048","CR-Weekday-Spring-19-052","CR-Weekday-Spring-19-066","CR-Weekday-Spring-19-056"],"by_trip":{"CR-Weekday-Spring-19-066":[{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-064":[{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-062":[{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-060":[{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-056":[{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-052":[{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-048":[{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-040":[{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:01 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:06 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:14 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:34 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-038":[{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:56 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:05 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:13 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:35 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-036":[{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:11 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:42 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:50 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:03 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:10 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-034":[{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:39 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:49 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:17 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Weekday-Spring-19-032":[{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"CR-Wdy-Kingston-Spr-19"},"CR-Su-Kingston-Spr-19":{"0":{"trip_order":["CR-Sunday-Spring-19-2051","CR-Sunday-Spring-19-2033","CR-Sunday-Spring-19-2053","CR-Sunday-Spring-19-2035","CR-Sunday-Spring-19-2037","CR-Sunday-Spring-19-2055","CR-Sunday-Spring-19-2039","CR-Sunday-Spring-19-2041"],"by_trip":{"CR-Sunday-Spring-19-2055":[{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2053":[{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2051":[{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2041":[{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2039":[{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2037":[{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2035":[{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2033":[{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["CR-Sunday-Spring-19-2032","CR-Sunday-Spring-19-2034","CR-Sunday-Spring-19-2052","CR-Sunday-Spring-19-2036","CR-Sunday-Spring-19-2054","CR-Sunday-Spring-19-2038","CR-Sunday-Spring-19-2056","CR-Sunday-Spring-19-2040"],"by_trip":{"CR-Sunday-Spring-19-2056":[{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2054":[{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2052":[{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2040":[{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2038":[{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2036":[{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2034":[{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Sunday-Spring-19-2032":[{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"CR-Su-Kingston-Spr-19"},"CR-Sa-Kingston-Spr-19":{"0":{"trip_order":["CR-Saturday-Spring-19-1051","CR-Saturday-Spring-19-1033","CR-Saturday-Spring-19-1053","CR-Saturday-Spring-19-1035","CR-Saturday-Spring-19-1037","CR-Saturday-Spring-19-1055","CR-Saturday-Spring-19-1039","CR-Saturday-Spring-19-1041"],"by_trip":{"CR-Saturday-Spring-19-1055":[{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1053":[{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1051":[{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1041":[{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1039":[{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1037":[{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1035":[{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1033":[{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":3,"last_stop?":false,"flag?":true,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["CR-Saturday-Spring-19-1032","CR-Saturday-Spring-19-1034","CR-Saturday-Spring-19-1052","CR-Saturday-Spring-19-1036","CR-Saturday-Spring-19-1054","CR-Saturday-Spring-19-1038","CR-Saturday-Spring-19-1056","CR-Saturday-Spring-19-1040"],"by_trip":{"CR-Saturday-Spring-19-1056":[{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1054":[{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1052":[{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1040":[{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1038":[{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1036":[{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1034":[{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"CR-Saturday-Spring-19-1032":[{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"CR-Sa-Kingston-Spr-19"}} +{"CR-Wdy-Kingston-Spr-19-1":{"trip_order":["CR-Weekday-Spring-19-032","CR-Weekday-Spring-19-034","CR-Weekday-Spring-19-036","CR-Weekday-Spring-19-038","CR-Weekday-Spring-19-040","CR-Weekday-Spring-19-060","CR-Weekday-Spring-19-062","CR-Weekday-Spring-19-064","CR-Weekday-Spring-19-048","CR-Weekday-Spring-19-052","CR-Weekday-Spring-19-066","CR-Weekday-Spring-19-056"],"by_trip":{"CR-Weekday-Spring-19-066":{"schedules":[{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"066","id":"CR-Weekday-Spring-19-066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":82},"CR-Weekday-Spring-19-064":{"schedules":[{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"064","id":"CR-Weekday-Spring-19-064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":111},"CR-Weekday-Spring-19-062":{"schedules":[{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790005","name":"062","id":"CR-Weekday-Spring-19-062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":59},"CR-Weekday-Spring-19-060":{"schedules":[{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"060","id":"CR-Weekday-Spring-19-060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":98},"CR-Weekday-Spring-19-056":{"schedules":[{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"056","id":"CR-Weekday-Spring-19-056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":56},"CR-Weekday-Spring-19-052":{"schedules":[{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"052","id":"CR-Weekday-Spring-19-052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":58},"CR-Weekday-Spring-19-048":{"schedules":[{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"048","id":"CR-Weekday-Spring-19-048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-040":{"schedules":[{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:01 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:06 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:14 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"040","id":"CR-Weekday-Spring-19-040","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"09:34 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-038":{"schedules":[{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:56 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:05 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:13 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"038","id":"CR-Weekday-Spring-19-038","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:35 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":59},"CR-Weekday-Spring-19-036":{"schedules":[{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:11 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:42 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:50 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:03 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"036","id":"CR-Weekday-Spring-19-036","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"08:10 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":59},"CR-Weekday-Spring-19-034":{"schedules":[{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:39 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:49 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"034","id":"CR-Weekday-Spring-19-034","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"07:17 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":58},"CR-Weekday-Spring-19-032":{"schedules":[{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"05:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"032","id":"CR-Weekday-Spring-19-032","headsign":"South Station","direction_id":1,"bikes_allowed?":false},"time":"06:27 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":57}}},"CR-Wdy-Kingston-Spr-19-0":{"trip_order":["CR-Weekday-Spring-19-033","CR-Weekday-Spring-19-061","CR-Weekday-Spring-19-063","CR-Weekday-Spring-19-065","CR-Weekday-Spring-19-041","CR-Weekday-Spring-19-043","CR-Weekday-Spring-19-045","CR-Weekday-Spring-19-047","CR-Weekday-Spring-19-067","CR-Weekday-Spring-19-051","CR-Weekday-Spring-19-055","CR-Weekday-Spring-19-057"],"by_trip":{"CR-Weekday-Spring-19-067":{"schedules":[{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:15 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:48 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:53 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"06:58 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"07:11 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"067","id":"CR-Weekday-Spring-19-067","headsign":"Plymouth","direction_id":0,"bikes_allowed?":false},"time":"07:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false}],"duration":82},"CR-Weekday-Spring-19-065":{"schedules":[{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"065","id":"CR-Weekday-Spring-19-065","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false}],"duration":87},"CR-Weekday-Spring-19-063":{"schedules":[{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790006","name":"063","id":"CR-Weekday-Spring-19-063","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-061":{"schedules":[{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"061","id":"CR-Weekday-Spring-19-061","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":92},"CR-Weekday-Spring-19-057":{"schedules":[{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:15 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"057","id":"CR-Weekday-Spring-19-057","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":56},"CR-Weekday-Spring-19-055":{"schedules":[{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"055","id":"CR-Weekday-Spring-19-055","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":56},"CR-Weekday-Spring-19-051":{"schedules":[{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"051","id":"CR-Weekday-Spring-19-051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-047":{"schedules":[{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:09 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:18 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"047","id":"CR-Weekday-Spring-19-047","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"06:35 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-045":{"schedules":[{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:19 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:35 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:40 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:45 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"045","id":"CR-Weekday-Spring-19-045","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:57 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Weekday-Spring-19-043":{"schedules":[{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:47 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:52 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:01 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:06 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"043","id":"CR-Weekday-Spring-19-043","headsign":"Kingston","direction_id":0,"bikes_allowed?":false},"time":"05:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58},"CR-Weekday-Spring-19-041":{"schedules":[{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"041","id":"CR-Weekday-Spring-19-041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58},"CR-Weekday-Spring-19-033":{"schedules":[{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"033","id":"CR-Weekday-Spring-19-033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":61}}},"CR-Su-Kingston-Spr-19-1":{"trip_order":["CR-Sunday-Spring-19-2032","CR-Sunday-Spring-19-2034","CR-Sunday-Spring-19-2052","CR-Sunday-Spring-19-2036","CR-Sunday-Spring-19-2054","CR-Sunday-Spring-19-2038","CR-Sunday-Spring-19-2056","CR-Sunday-Spring-19-2040"],"by_trip":{"CR-Sunday-Spring-19-2056":{"schedules":[{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"2056","id":"CR-Sunday-Spring-19-2056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":83},"CR-Sunday-Spring-19-2054":{"schedules":[{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2054","id":"CR-Sunday-Spring-19-2054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":84},"CR-Sunday-Spring-19-2052":{"schedules":[{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"2052","id":"CR-Sunday-Spring-19-2052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":87},"CR-Sunday-Spring-19-2040":{"schedules":[{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2040","id":"CR-Sunday-Spring-19-2040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":56},"CR-Sunday-Spring-19-2038":{"schedules":[{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2038","id":"CR-Sunday-Spring-19-2038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":57},"CR-Sunday-Spring-19-2036":{"schedules":[{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2036","id":"CR-Sunday-Spring-19-2036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":56},"CR-Sunday-Spring-19-2034":{"schedules":[{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2034","id":"CR-Sunday-Spring-19-2034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":59},"CR-Sunday-Spring-19-2032":{"schedules":[{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"2032","id":"CR-Sunday-Spring-19-2032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":58}}},"CR-Su-Kingston-Spr-19-0":{"trip_order":["CR-Sunday-Spring-19-2051","CR-Sunday-Spring-19-2033","CR-Sunday-Spring-19-2053","CR-Sunday-Spring-19-2035","CR-Sunday-Spring-19-2037","CR-Sunday-Spring-19-2055","CR-Sunday-Spring-19-2039","CR-Sunday-Spring-19-2041"],"by_trip":{"CR-Sunday-Spring-19-2055":{"schedules":[{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"2055","id":"CR-Sunday-Spring-19-2055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false}],"duration":84},"CR-Sunday-Spring-19-2053":{"schedules":[{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2053","id":"CR-Sunday-Spring-19-2053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":85},"CR-Sunday-Spring-19-2051":{"schedules":[{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"2051","id":"CR-Sunday-Spring-19-2051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":85},"CR-Sunday-Spring-19-2041":{"schedules":[{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2041","id":"CR-Sunday-Spring-19-2041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Sunday-Spring-19-2039":{"schedules":[{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2039","id":"CR-Sunday-Spring-19-2039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Sunday-Spring-19-2037":{"schedules":[{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2037","id":"CR-Sunday-Spring-19-2037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58},"CR-Sunday-Spring-19-2035":{"schedules":[{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2035","id":"CR-Sunday-Spring-19-2035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Sunday-Spring-19-2033":{"schedules":[{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"2033","id":"CR-Sunday-Spring-19-2033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58}}},"CR-Sa-Kingston-Spr-19-1":{"trip_order":["CR-Saturday-Spring-19-1032","CR-Saturday-Spring-19-1034","CR-Saturday-Spring-19-1052","CR-Saturday-Spring-19-1036","CR-Saturday-Spring-19-1054","CR-Saturday-Spring-19-1038","CR-Saturday-Spring-19-1056","CR-Saturday-Spring-19-1040"],"by_trip":{"CR-Saturday-Spring-19-1056":{"schedules":[{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790003","name":"1056","id":"CR-Saturday-Spring-19-1056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":83},"CR-Saturday-Spring-19-1054":{"schedules":[{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1054","id":"CR-Saturday-Spring-19-1054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":84},"CR-Saturday-Spring-19-1052":{"schedules":[{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-PB-0356","early_departure?":false},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-PB-0356","early_departure?":true},{"trip":{"shape_id":"9790007","name":"1052","id":"CR-Saturday-Spring-19-1052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-PB-0356","early_departure?":false}],"duration":87},"CR-Saturday-Spring-19-1040":{"schedules":[{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1040","id":"CR-Saturday-Spring-19-1040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":56},"CR-Saturday-Spring-19-1038":{"schedules":[{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1038","id":"CR-Saturday-Spring-19-1038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":57},"CR-Saturday-Spring-19-1036":{"schedules":[{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1036","id":"CR-Saturday-Spring-19-1036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":56},"CR-Saturday-Spring-19-1034":{"schedules":[{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1034","id":"CR-Saturday-Spring-19-1034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":59},"CR-Saturday-Spring-19-1032":{"schedules":[{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$3.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$4.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-KB-0351","early_departure?":false},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$5.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-KB-0351","early_departure?":true},{"trip":{"shape_id":"9790001","name":"1032","id":"CR-Saturday-Spring-19-1032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-KB-0351","early_departure?":false}],"duration":58}}},"CR-Sa-Kingston-Spr-19-0":{"trip_order":["CR-Saturday-Spring-19-1051","CR-Saturday-Spring-19-1033","CR-Saturday-Spring-19-1053","CR-Saturday-Spring-19-1035","CR-Saturday-Spring-19-1037","CR-Saturday-Spring-19-1055","CR-Saturday-Spring-19-1039","CR-Saturday-Spring-19-1041"],"by_trip":{"CR-Saturday-Spring-19-1055":{"schedules":[{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790004","name":"1055","id":"CR-Saturday-Spring-19-1055","headsign":"Plymouth","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false}],"duration":84},"CR-Saturday-Spring-19-1053":{"schedules":[{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1053","id":"CR-Saturday-Spring-19-1053","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":85},"CR-Saturday-Spring-19-1051":{"schedules":[{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":2,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4465},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Plymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.69018,"latitude":41.981021,"capacity":{"type":"Surface Lot","total":96,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"Plymouth","longitude":-70.690421,"latitude":41.981278,"is_child?":false,"id":"place-PB-0356","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Plymouth"],"bike_storage":[],"address":"385 Court St, Plymouth, MA 02360","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0356&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790008","name":"1051","id":"CR-Saturday-Spring-19-1051","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":85},"CR-Saturday-Spring-19-1041":{"schedules":[{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1041","id":"CR-Saturday-Spring-19-1041","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Saturday-Spring-19-1039":{"schedules":[{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1039","id":"CR-Saturday-Spring-19-1039","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Saturday-Spring-19-1037":{"schedules":[{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1037","id":"CR-Saturday-Spring-19-1037","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58},"CR-Saturday-Spring-19-1035":{"schedules":[{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1035","id":"CR-Saturday-Spring-19-1035","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":57},"CR-Saturday-Spring-19-1033":{"schedules":[{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"JFK/UMass","longitude":-71.052391,"latitude":42.320685,"is_child?":false,"id":"place-jfk","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["121","70085","70086","70095","70096","JFK/UMASS","door-jfk-busway","door-jfk-columbia","door-jfk-oldcolony","door-jfk-sydneyn","door-jfk-sydneys"],"bike_storage":["bike_storage_rack"],"address":"599 Old Colony Ave Boston, MA 02127-3805","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$2.40","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-jfk&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Quincy Center","longitude":-71.005409,"latitude":42.251809,"is_child?":false,"id":"place-qnctr","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["32000","32001","32002","32003","32004","32005","70101","70102","Quincy Center","door-qnctr-burgin","door-qnctr-busway","node-330-entrance","node-330-platform","node-810-entrance","node-810-platform","node-896-entrance","node-896-platform","node-qnctr-burgin-door","node-qnctr-center-lobby","node-qnctr-crstair-entrance","node-qnctr-crstair-platform","node-qnctr-elevfarepaid","node-qnctr-elevfareunpaid","node-qnctr-farepaid","node-qnctr-fareunpaid","node-qnctr-rdstair-entrance","node-qnctr-rdstair-platform"],"bike_storage":["bike_storage_rack"],"address":"175 Thomas E Burgin Pkwy, Quincy, MA 02169","accessibility":["accessible","escalator_up","elevator","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$6.50","pickup_type":3,"last_stop?":false,"flag?":true,"fare_link":"/fares/commuter_rail?destination=place-qnctr&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":null,"arrive_before":"07:15 AM"},"payment":{"monthly_rate":"Monthly passes are not available at MBTA garages, but premium spots are available at this garage.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Tap Card","Mobile App","Invoice","Credit/Debit Card","Cash"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3 (Prices are valid for up to 14 hours of parking. After the first 14 hours, the daily rate is $15.)"},"note":null,"name":"Braintree Garage","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.001139,"latitude":42.207854,"capacity":{"type":"Garage","total":1197,"accessible":20},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street A Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.999449,"latitude":42.206983,"capacity":{"type":"Surface Lot","total":108,"accessible":5},"address":null},{"utilization":null,"payment":{"monthly_rate":"Monthly passes are not available at this MBTA lot.","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4403},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $9 | Sat-Sun: $3"},"note":null,"name":"Braintree Ivory Street B Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-71.000203,"latitude":42.205741,"capacity":{"type":"Surface Lot","total":205,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Braintree","longitude":-71.001138,"latitude":42.207854,"is_child?":false,"id":"place-brntn","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["38671","70105","Braintree","Braintree-01","Braintree-02","door-brntn-busway","door-brntn-faregates"],"bike_storage":["bike_storage_cage"],"address":"197 Ivory St, Braintree, MA 02184","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform","ramp"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$7.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-brntn&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":329,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4471},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"South Weymouth Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.953984,"latitude":42.154754,"capacity":{"type":"Surface Lot","total":636,"accessible":13},"address":null}],"parent_id":null,"note":null,"name":"South Weymouth","longitude":-70.953302,"latitude":42.155025,"is_child?":false,"id":"place-PB-0158","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["South Weymouth"],"bike_storage":["bike_storage_rack_covered"],"address":"89 Trotter Rd, Weymouth, MA 02190","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0158&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":327,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4401},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Abington Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.934853,"latitude":42.106738,"capacity":{"type":"Surface Lot","total":404,"accessible":9},"address":null}],"parent_id":null,"note":null,"name":"Abington","longitude":-70.934405,"latitude":42.107156,"is_child?":false,"id":"place-PB-0194","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Abington"],"bike_storage":["bike_storage_rack"],"address":"231 Centre Ave, Abington, MA 02351","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$8.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0194&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":176,"arrive_before":null},"payment":{"monthly_rate":"$105","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4474},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $6 | Sat-Sun: $2"},"note":null,"name":"Whitman Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.923487,"latitude":42.08256,"capacity":{"type":"Surface Lot","total":199,"accessible":7},"address":null}],"parent_id":null,"note":null,"name":"Whitman","longitude":-70.923411,"latitude":42.082749,"is_child?":false,"id":"place-PB-0212","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Whitman"],"bike_storage":["bike_storage_rack_covered"],"address":"383 South Ave, Whitman, MA 02382","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$9.75","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0212&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":259,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4437},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Hanson Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.882294,"latitude":42.044371,"capacity":{"type":"Surface Lot","total":428,"accessible":8},"address":null}],"parent_id":null,"note":null,"name":"Hanson","longitude":-70.882438,"latitude":42.043967,"is_child?":false,"id":"place-PB-0245","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Hanson"],"bike_storage":["bike_storage_rack"],"address":"1070 Main St, Hanson, MA 02341","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$10.50","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0245&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":209,"arrive_before":null},"payment":{"monthly_rate":"$35","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4436},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $2 | Sat-Sun: $2"},"note":null,"name":"Halifax Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.82462,"latitude":42.014609,"capacity":{"type":"Surface Lot","total":412,"accessible":10},"address":null}],"parent_id":null,"note":null,"name":"Halifax","longitude":-70.824263,"latitude":42.014739,"is_child?":false,"id":"place-PB-0281","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":["Halifax"],"bike_storage":["bike_storage_rack"],"address":"6 Garden Rd, Halifax, MA 02338","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$11.00","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-PB-0281&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"9790002","name":"1033","id":"CR-Saturday-Spring-19-1033","headsign":"Kingston","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":{"typical":404,"arrive_before":null},"payment":{"monthly_rate":"$70","mobile_app":{"url":"https://www.paybyphone.com/","name":"PayByPhone","id":4440},"methods":["Mobile App","Invoice"],"daily_rate":"Mon-Fri: $4 | Sat-Sun: $2"},"note":null,"name":"Kingston Parking Lot","manager":{"url":"http://www.parkmbta.com/","phone":"617-222-3200","name":"Republic Parking System","contact":"MBTA Customer Support"},"longitude":-70.722664,"latitude":41.977925,"capacity":{"type":"Surface Lot","total":1030,"accessible":22},"address":null}],"parent_id":null,"note":null,"name":"Kingston","longitude":-70.721709,"latitude":41.97762,"is_child?":false,"id":"place-KB-0351","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_retailer"],"description":null,"closed_stop_info":null,"child_ids":["Kingston"],"bike_storage":["bike_storage_rack"],"address":"134 Marion Dr, Kingston, MA 02364","accessibility":["accessible","fully_elevated_platform"]},"route":{"type":2,"name":"Kingston/Plymouth Line","long_name":"Kingston/Plymouth Line","id":"CR-Kingston","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Kingston or Plymouth","1":"South Station"},"description":"commuter_rail","custom_route?":false},"price":"$12.25","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/commuter_rail?destination=place-KB-0351&origin=place-sstat","early_departure?":false}],"duration":58}}}} \ No newline at end of file diff --git a/apps/site/assets/ts/schedule/__tests__/serviceData.json b/apps/site/assets/ts/schedule/__tests__/serviceData.json index 444130ed30..d1ea70058a 100644 --- a/apps/site/assets/ts/schedule/__tests__/serviceData.json +++ b/apps/site/assets/ts/schedule/__tests__/serviceData.json @@ -1 +1 @@ -{"BUS319-Q-Su-02":{"0":{"trip_order":["40640198","40640090","40640194","40640091","40640193","40640092","40640369","40640093","40640224","40640094","40640365","40640095","40640366","40640096","40640367","40640097","40640195","40640665","40640098","40640196","40640667","40640099","40640197","40640100","40640199","40640835","40640101","40640368","40640102","40640223","40640103","40640663","40640200","40640104","40640771","40640201","40640105","40640202","40640106","40640203","40640107","40640698","40640204","40640662","40640108","40640205","40640109","40640206","40640110","40640837","40640482","40640207","40640463","40640426","40640208","40640405","40640464","40640209","40640420","40640459","40640210","40640406","40640834","40640467","40640427","40640211","40640465","40640615","40640212","40640407","40640470","40640213","40640421","40640479","40640214","40640408","40640478","40640428","40640215","40640472","40640617","40640216","40640619","40640468","40640217","40640409","40640471","40640218","40640422","40640475","40640410","40640219","40640481","40640429","40640220","40640411","40640221","40639829","40640621","40640404","40639832","40640770","40640434","40640088","40640839","40639831"],"by_trip":{"40639829":[{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40639831":[{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40639832":[{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640088":[{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:48 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640090":[{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640091":[{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640092":[{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640093":[{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640094":[{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640095":[{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640096":[{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640097":[{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640098":[{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640099":[{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640100":[{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640101":[{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640102":[{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640103":[{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640104":[{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640105":[{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640106":[{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640107":[{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640108":[{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640109":[{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640110":[{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640193":[{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640194":[{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640195":[{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640196":[{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640197":[{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640198":[{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640199":[{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640200":[{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640201":[{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640202":[{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640203":[{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640204":[{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640205":[{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640206":[{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640207":[{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640208":[{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640209":[{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640210":[{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640211":[{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640212":[{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640213":[{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640214":[{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640215":[{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640216":[{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640217":[{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640218":[{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640219":[{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640220":[{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640221":[{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640223":[{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640224":[{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640365":[{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640366":[{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640367":[{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640368":[{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640369":[{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640404":[{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640405":[{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640406":[{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640407":[{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640408":[{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640409":[{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640410":[{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640411":[{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640420":[{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640421":[{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640422":[{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640426":[{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640427":[{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640428":[{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640429":[{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640434":[{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640459":[{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640463":[{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640464":[{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640465":[{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640467":[{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640468":[{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640470":[{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640471":[{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640472":[{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640475":[{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640478":[{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640479":[{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640481":[{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640482":[{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640615":[{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640617":[{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640619":[{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640621":[{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:20 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640662":[{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640663":[{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640665":[{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640667":[{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640698":[{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640770":[{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640771":[{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640834":[{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640835":[{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640837":[{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640839":[{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["40640814","40640799","40639640","40640798","40639641","40640796","40640132","40640793","40640371","40640131","40640372","40640130","40640373","40640129","40640374","40640128","40640375","40640127","40640376","40640126","40640377","40640125","40640378","40640124","40640661","40640379","40640123","40640666","40640380","40640122","40640381","40639833","40640121","40640813","40640382","40639830","40640120","40640383","40640119","40640384","40640664","40640118","40640385","40640838","40640117","40640386","40640116","40640387","40640115","40640388","40640836","40640114","40640668","40640389","40640113","40640390","40640112","40640391","40640676","40640483","40640111","40640412","40640392","40640460","40640430","40640393","40640462","40640413","40640394","40640423","40640461","40640732","40640395","40640414","40640458","40640616","40640396","40640456","40640431","40640397","40640457","40640415","40640398","40640424","40640477","40640399","40640416","40640476","40640620","40640400","40640474","40640618","40640401","40640473","40640432","40640402","40640417","40640469","40640403","40640425","40640480","40640418","40640222","40640433","40640370","40640622","40640192","40640419","40640089"],"by_trip":{"40639640":[{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40639641":[{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40639830":[{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40639833":[{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640089":[{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640111":[{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640112":[{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640113":[{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640114":[{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640115":[{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640116":[{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640117":[{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640118":[{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640119":[{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640120":[{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640121":[{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640122":[{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640123":[{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640124":[{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640125":[{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640126":[{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640127":[{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640128":[{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640129":[{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640130":[{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640131":[{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640132":[{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640192":[{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640222":[{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640370":[{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640371":[{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640372":[{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640373":[{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640374":[{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640375":[{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640376":[{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640377":[{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640378":[{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640379":[{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640380":[{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640381":[{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640382":[{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640383":[{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640384":[{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640385":[{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640386":[{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640387":[{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640388":[{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640389":[{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640390":[{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640391":[{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640392":[{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640393":[{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640394":[{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640395":[{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640396":[{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640397":[{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640398":[{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640399":[{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640400":[{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640401":[{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640402":[{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640403":[{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640412":[{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640413":[{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640414":[{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640415":[{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640416":[{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640417":[{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640418":[{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640419":[{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640423":[{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640424":[{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640425":[{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640430":[{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640431":[{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640432":[{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640433":[{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640456":[{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640457":[{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640458":[{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640460":[{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640461":[{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640462":[{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640469":[{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640473":[{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640474":[{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640476":[{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640477":[{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640480":[{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640483":[{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640616":[{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640618":[{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640620":[{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640622":[{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640661":[{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640664":[{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640666":[{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640668":[{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640676":[{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640732":[{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640793":[{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640796":[{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640798":[{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640799":[{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640813":[{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640814":[{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640836":[{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40640838":[{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"BUS319-Q-Su-02"},"BUS319-P-Sa-02":{"0":{"trip_order":["40672179","40672062","40672081","40672148","40672157","40672147","40672149","40672146","40672063","40672145","40672064","40672144","40672066","40672143","40672067","40672142","40672068","40673136","40672141","40672140","40672070","40672139","40672071","40672138","40672072","40672137","40672073","40672466","40672136","40672648","40673148","40672074","40672135","40672649","40672075","40672096","40672650","40672076","40672651","40672095","40673140","40672077","40672652","40672094","40672653","40672078","40672093","40672654","40672079","40672092","40672655","40672829","40672080","40672656","40673137","40672091","40672173","40672657","40672090","40672758","40672658","40672061","40673132","40672089","40672659","40672172","40672150","40672660","40672170","40672661","40673141","40672155","40672169","40672662","40672088","40672896","40672663","40672168","40672086","40672664","40672167","40672085","40672857","40673012","40672166","40672084","40672165","40672154","40672164","40672153","40672163","40672152","40672162","40672151","40672161","40672156","40672160","40672082","40672159","40672083","40672158","40672087","40672176","40672065","40672806","40672991","40672180","40673166"],"by_trip":{"40672061":[{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672062":[{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672063":[{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672064":[{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672065":[{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:29 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672066":[{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672067":[{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672068":[{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672070":[{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672071":[{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672072":[{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672073":[{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672074":[{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672075":[{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672076":[{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672077":[{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672078":[{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672079":[{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672080":[{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672081":[{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672082":[{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672083":[{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672084":[{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672085":[{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672086":[{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672087":[{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672088":[{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672089":[{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672090":[{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672091":[{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672092":[{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672093":[{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672094":[{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672095":[{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672096":[{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672135":[{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672136":[{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672137":[{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672138":[{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672139":[{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672140":[{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672141":[{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672142":[{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672143":[{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672144":[{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672145":[{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672146":[{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672147":[{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672148":[{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672149":[{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672150":[{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672151":[{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672152":[{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672153":[{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672154":[{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672155":[{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672156":[{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672157":[{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672158":[{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672159":[{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672160":[{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672161":[{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672162":[{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672163":[{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672164":[{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672165":[{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672166":[{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672167":[{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672168":[{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672169":[{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672170":[{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672172":[{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672173":[{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672176":[{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:04 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672179":[{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672180":[{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:49 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:51 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:53 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672466":[{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672648":[{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672649":[{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672650":[{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672651":[{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672652":[{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672653":[{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672654":[{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672655":[{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672656":[{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672657":[{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672658":[{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672659":[{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672660":[{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672661":[{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672662":[{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672663":[{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672664":[{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672758":[{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672806":[{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672829":[{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672857":[{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672896":[{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672991":[{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673012":[{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673132":[{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673136":[{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673137":[{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673140":[{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673141":[{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673148":[{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673166":[{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:54 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["40673127","40673092","40673091","40673089","40672929","40673087","40672892","40671858","40673084","40672855","40672175","40672128","40672036","40672028","40672097","40672046","40672124","40672103","40672133","40672112","40672037","40672029","40672098","40672047","40672108","40672120","40673153","40672116","40672129","40672038","40672030","40672099","40672048","40672125","40672104","40672134","40672467","40672119","40672032","40672631","40673139","40672117","40672632","40672051","40672126","40672633","40672122","40672729","40672058","40672634","40672131","40673138","40672635","40672042","40672033","40672636","40672101","40672637","40672052","40672110","40672638","40672106","40672055","40672639","40673134","40672114","40672640","40672043","40672034","40672641","40672807","40672118","40673133","40672642","40672053","40672127","40672643","40672123","40672056","40672644","40673144","40672132","40672645","40672044","40672035","40672646","40672785","40672102","40672647","40672054","40672111","40672107","40672712","40672040","40672115","40672045","40672113","40672069","40672031","40672039","40672049","40672171","40672121","40672060","40672130","40672059","40672174","40672100","40672050","40672109","40672105","40672057","40672041"],"by_trip":{"40671858":[{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672028":[{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672029":[{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672030":[{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672031":[{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672032":[{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672033":[{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672034":[{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672035":[{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672036":[{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672037":[{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672038":[{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672039":[{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672040":[{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672041":[{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:48 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672042":[{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672043":[{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672044":[{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672045":[{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672046":[{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672047":[{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672048":[{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672049":[{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672050":[{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672051":[{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672052":[{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672053":[{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672054":[{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672055":[{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672056":[{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672057":[{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:14 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672058":[{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672059":[{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672060":[{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672069":[{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672097":[{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672098":[{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672099":[{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672100":[{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672101":[{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672102":[{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672103":[{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672104":[{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672105":[{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672106":[{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672107":[{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672108":[{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672109":[{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672110":[{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672111":[{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672112":[{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672113":[{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672114":[{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672115":[{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672116":[{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672117":[{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672118":[{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672119":[{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672120":[{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672121":[{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672122":[{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672123":[{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672124":[{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672125":[{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672126":[{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672127":[{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672128":[{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672129":[{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672130":[{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672131":[{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672132":[{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672133":[{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672134":[{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672171":[{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672174":[{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672175":[{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672467":[{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672631":[{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672632":[{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672633":[{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672634":[{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672635":[{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672636":[{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672637":[{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672638":[{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672639":[{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672640":[{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672641":[{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672642":[{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672643":[{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672644":[{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672645":[{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672646":[{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672647":[{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672712":[{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672729":[{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672785":[{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672807":[{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672855":[{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672892":[{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40672929":[{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673084":[{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673087":[{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673089":[{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673091":[{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673092":[{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673127":[{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673133":[{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673134":[{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673138":[{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673139":[{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673144":[{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40673153":[{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"BUS319-P-Sa-02"},"BUS319-O-Wdy-02":{"0":{"trip_order":["40606114","40606000","40606168","40606116","40606025","40605998","40606163","40606120","40606069","40606031","40605996","40605982","40606162","40605596","40606118","40605578","40606070","40605577","40606022","40605993","40605591","40605979","40605565","40605867","40606157","40605572","40606109","40605595","40606038","40605569","40606021","40605554","40605986","40605977","40605594","40605865","40605573","40606161","40605553","40606111","40606046","40605593","40606024","40605567","40605987","40605550","40605975","40605863","40605592","40606160","40605571","40606108","40606043","40605552","40606028","40605588","40605991","40605568","40605974","40605548","40605861","40605590","40605570","40606055","40605551","40605990","40605589","40605971","40605566","40605549","40605859","40606035","40605969","40605846","40606042","40605966","40606354","40606039","40605773","40605961","40606034","40605962","40606036","40606465","40605964","40605770","40606124","40606087","40605911","40605842","40606146","40606056","40605800","40605950","40606134","40606272","40606077","40605754","40605917","40606128","40606065","40605958","40606143","40606076","40605935","40606414","40606153","40606063","40605939","40606148","40606052","40605931","40606131","40605523","40605537","40606049","40605497","40605924","40605522","40606144","40605527","40606058","40605498","40606006","40605525","40605922","40605906","40605528","40606141","40605500","40606099","40605526","40606060","40606300","40606011","40605529","40605926","40605499","40605888","40605535","40606127","40606095","40605536","40606057","40605503","40606007","40605534","40605934","40605886","40605533","40606151","40605502","40606093","40606086","40605531","40606010","40605532","40605941","40605873","40605501","40606149","40605530","40606096","40606083","40605524","40606008","40605940","40605900","40606145","40606092","40606078","40606015","40605927","40605889","40606138","40606094","40606072","40605803","40605918","40605884","40606091","40605623","40606053","40605923","40605881","40606105","40605957","40605893","40605642","40605929","40605883","40605936","40605877","40605913","40606338","40605899","40605916","40606249","40605878","40605952","40605902","40605956","40605905","40605954","40605904","40605910","40605872","40605670","40605955","40605879","40605735"],"by_trip":{"40605497":[{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605498":[{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605499":[{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605500":[{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605501":[{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605502":[{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605503":[{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605522":[{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605523":[{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605524":[{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605525":[{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605526":[{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605527":[{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605528":[{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605529":[{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605530":[{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605531":[{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605532":[{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605533":[{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605534":[{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605535":[{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605536":[{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605537":[{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605548":[{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605549":[{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605550":[{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605551":[{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605552":[{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605553":[{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605554":[{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605565":[{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605566":[{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605567":[{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605568":[{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605569":[{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605570":[{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605571":[{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605572":[{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605573":[{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605577":[{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605578":[{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605588":[{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605589":[{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605590":[{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605591":[{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605592":[{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605593":[{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605594":[{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605595":[{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605596":[{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605623":[{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605642":[{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605670":[{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605735":[{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:02 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605754":[{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605770":[{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605773":[{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605800":[{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605803":[{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605842":[{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605846":[{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605859":[{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:48 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605861":[{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605863":[{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605865":[{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605867":[{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605872":[{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:25 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605873":[{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605877":[{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605878":[{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605879":[{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605881":[{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605883":[{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605884":[{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605886":[{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605888":[{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605889":[{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605893":[{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605899":[{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605900":[{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605902":[{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605904":[{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605905":[{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605906":[{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605910":[{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605911":[{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605913":[{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605916":[{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605917":[{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605918":[{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605922":[{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605923":[{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605924":[{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605926":[{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605927":[{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605929":[{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605931":[{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605934":[{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605935":[{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605936":[{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605939":[{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605940":[{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605941":[{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605950":[{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605952":[{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605954":[{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605955":[{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605956":[{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605957":[{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605958":[{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605961":[{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605962":[{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605964":[{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605966":[{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605969":[{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605971":[{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605974":[{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605975":[{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605977":[{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605979":[{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605982":[{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605986":[{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605987":[{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605990":[{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605991":[{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605993":[{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605996":[{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605998":[{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606000":[{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606006":[{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606007":[{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606008":[{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606010":[{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606011":[{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606015":[{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606021":[{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606022":[{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606024":[{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606025":[{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606028":[{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606031":[{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606034":[{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606035":[{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606036":[{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606038":[{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606039":[{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606042":[{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606043":[{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606046":[{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606049":[{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606052":[{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606053":[{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606055":[{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606056":[{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606057":[{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606058":[{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606060":[{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606063":[{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606065":[{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606069":[{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606070":[{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606072":[{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606076":[{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606077":[{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606078":[{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606083":[{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606086":[{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606087":[{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606091":[{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606092":[{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606093":[{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606094":[{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606095":[{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606096":[{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606099":[{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606105":[{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606108":[{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606109":[{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606111":[{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606114":[{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606116":[{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606118":[{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606120":[{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606124":[{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606127":[{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606128":[{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606131":[{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606134":[{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606138":[{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606141":[{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606143":[{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606144":[{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606145":[{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606146":[{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606148":[{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606149":[{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606151":[{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606153":[{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606157":[{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606160":[{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606161":[{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606162":[{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606163":[{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606168":[{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606249":[{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606272":[{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606300":[{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606338":[{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606354":[{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606414":[{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606465":[{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"1":{"trip_order":["40605845","40605841","40605784","40605769","40605753","40606113","40606449","40605999","40606392","40605799","40606170","40606115","40606253","40606026","40605997","40606169","40606119","40606071","40606030","40605995","40605981","40605804","40606167","40606299","40605598","40606117","40606073","40605579","40606027","40605576","40605994","40605580","40605980","40606337","40605575","40605868","40606159","40605556","40606121","40605581","40606082","40605557","40606020","40605992","40605558","40605978","40605582","40605866","40605559","40606164","40606112","40605542","40606051","40605583","40606023","40605988","40605560","40605976","40605543","40605864","40605584","40606158","40606110","40605561","40606045","40605544","40606029","40605585","40605985","40605973","40605562","40605545","40605862","40605586","40606050","40605563","40605546","40605989","40605587","40605972","40605564","40605860","40605547","40606037","40605970","40606047","40605967","40606044","40606207","40605968","40606040","40605960","40606041","40606388","40605965","40605641","40606142","40606079","40605963","40605691","40606147","40606048","40605951","40605667","40606136","40606064","40605915","40606445","40605736","40606125","40606059","40605945","40606135","40606075","40605914","40605624","40606152","40606234","40606061","40605694","40605938","40606133","40606062","40605932","40606132","40605510","40606054","40605513","40605933","40605493","40606137","40605514","40605515","40606084","40606014","40605494","40605925","40605516","40605890","40605517","40606130","40606100","40605495","40606081","40605518","40606009","40605928","40605519","40605496","40605885","40606150","40605520","40606101","40606250","40606080","40605521","40606017","40605491","40605947","40605507","40605898","40606126","40605512","40606102","40605492","40606068","40606013","40605511","40605959","40605509","40605874","40606139","40605490","40606104","40605508","40606066","40605506","40606016","40605942","40605895","40606140","40606098","40606067","40606012","40605944","40605891","40606129","40606097","40606085","40605946","40605882","40606090","40606074","40605920","40605887","40606103","40605921","40605903","40605612","40605943","40605896","40605930","40605894","40605937","40605880","40605919","40605897","40605949","40605901","40605912","40605876","40605953","40605875","40605909","40605871","40605948","40605892"],"by_trip":{"40605490":[{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605491":[{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605492":[{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605493":[{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605494":[{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605495":[{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605496":[{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605506":[{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605507":[{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605508":[{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605509":[{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605510":[{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605511":[{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605512":[{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605513":[{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605514":[{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605515":[{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605516":[{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605517":[{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605518":[{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605519":[{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605520":[{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605521":[{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605542":[{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605543":[{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605544":[{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605545":[{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605546":[{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605547":[{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605556":[{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605557":[{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605558":[{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605559":[{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605560":[{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605561":[{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605562":[{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605563":[{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605564":[{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605575":[{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605576":[{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605579":[{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605580":[{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605581":[{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605582":[{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605583":[{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605584":[{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605585":[{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605586":[{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605587":[{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605598":[{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605612":[{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605624":[{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605641":[{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605667":[{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605691":[{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605694":[{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:46 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605736":[{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605753":[{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605769":[{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605784":[{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605799":[{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605804":[{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605841":[{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605845":[{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605860":[{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605862":[{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605864":[{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605866":[{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605868":[{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605871":[{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605874":[{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605875":[{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605876":[{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605880":[{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605882":[{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605885":[{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605887":[{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605890":[{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605891":[{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605892":[{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605894":[{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605895":[{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605896":[{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605897":[{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:09 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605898":[{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605901":[{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605903":[{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605909":[{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605912":[{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605914":[{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605915":[{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605919":[{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605920":[{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605921":[{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605925":[{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605928":[{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605930":[{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605932":[{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605933":[{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605937":[{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:39 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605938":[{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605942":[{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605943":[{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605944":[{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605945":[{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605946":[{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605947":[{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605948":[{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605949":[{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605951":[{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605953":[{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605959":[{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605960":[{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605963":[{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605965":[{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605967":[{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605968":[{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605970":[{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605972":[{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605973":[{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605976":[{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605978":[{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605980":[{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605981":[{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605985":[{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605988":[{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605989":[{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605992":[{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605994":[{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605995":[{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605997":[{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40605999":[{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606009":[{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606012":[{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606013":[{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606014":[{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606016":[{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606017":[{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606020":[{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606023":[{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606026":[{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606027":[{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606029":[{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606030":[{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606037":[{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606040":[{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606041":[{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606044":[{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606045":[{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606047":[{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606048":[{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:48 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606050":[{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606051":[{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606054":[{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606059":[{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606061":[{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606062":[{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606064":[{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606066":[{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606067":[{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606068":[{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606071":[{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606073":[{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606074":[{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606075":[{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606079":[{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606080":[{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606081":[{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606082":[{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606084":[{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606085":[{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606090":[{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606097":[{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606098":[{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606100":[{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606101":[{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606102":[{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606103":[{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606104":[{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606110":[{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606112":[{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606113":[{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606115":[{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606117":[{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606119":[{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606121":[{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606125":[{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606126":[{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606129":[{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606130":[{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606132":[{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606133":[{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606135":[{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606136":[{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606137":[{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606139":[{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606140":[{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606142":[{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606147":[{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606150":[{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606152":[{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606158":[{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606159":[{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606164":[{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606167":[{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606169":[{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606170":[{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606207":[{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606234":[{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606250":[{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606253":[{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606299":[{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606337":[{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606388":[{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606392":[{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606445":[{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}],"40606449":[{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":0,"last_stop?":false,"flag?":false,"early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"pickup_type":1,"last_stop?":true,"flag?":false,"early_departure?":false}]}},"service_id":"BUS319-O-Wdy-02"}} \ No newline at end of file +{"BUS319-L-Su-02-1":{"trip_order":["40640814","40640799","40639640","40640798","40639641","40640796","40640132","40640793","40640371","40640131","40640372","40640130","40640373","40640129","40640374","40640128","40640375","40640127","40640376","40640126","40640377","40640125","40640378","40640124","40640661","40640379","40640123","40640666","40640380","40640122","40640381","40639833","40640121","40640813","40640382","40639830","40640120","40640383","40640119","40640384","40640664","40640118","40640385","40640838","40640117","40640386","40640116","40640387","40640115","40640388","40640836","40640114","40640668","40640389","40640113","40640390","40640112","40640391","40640676","40640483","40640111","40640412","40640392","40640460","40640430","40640393","40640462","40640413","40640394","40640423","40640461","40640732","40640395","40640414","40640458","40640616","40640396","40640456","40640431","40640397","40640457","40640415","40640398","40640424","40640477","40640399","40640416","40640476","40640620","40640400","40640474","40640618","40640401","40640473","40640432","40640402","40640417","40640469","40640403","40640425","40640480","40640418","40640222","40640433","40640370","40640622","40640192","40640419","40640089"],"by_trip":{"40639640":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40639641":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40639830":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639830","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40639833":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40639833","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640089":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640111":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640112":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640113":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640114":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640115":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640116":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640117":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640118":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640119":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640120":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640121":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640122":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640123":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640124":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640125":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640126":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640127":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640128":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640129":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640130":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640131":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640132":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640192":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640192","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640222":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640222","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640370":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640370","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640371":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640371","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640372":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640372","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640373":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640373","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640374":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640374","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640375":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640375","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640376":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640376","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640377":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640377","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640378":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640378","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640379":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640379","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640380":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640380","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640381":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640381","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640382":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640382","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640383":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640383","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640384":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640384","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640385":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640385","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640386":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640386","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640387":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640387","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640388":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640389":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640389","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640390":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640390","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640391":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640391","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640392":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640393":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640393","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640394":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640394","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640395":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640395","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640396":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640396","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640397":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640397","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640398":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640398","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640399":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640399","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640400":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640400","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640401":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640401","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640402":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640402","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640403":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640403","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640412":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640412","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640413":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640413","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640414":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640414","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640415":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640415","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640416":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640416","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640417":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640417","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640418":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640418","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640419":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640419","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640423":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640423","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640424":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640424","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640425":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640425","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640430":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640430","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640431":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640431","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640432":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640432","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640433":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640433","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640456":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640456","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640457":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640457","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640458":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640458","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640460":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640460","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640461":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640461","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640462":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40640462","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40640469":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640469","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640473":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640473","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640474":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640474","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640476":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640476","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640477":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640477","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640480":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40640480","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40640483":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640483","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640616":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640616","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640618":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640618","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640620":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640620","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640622":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640622","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640661":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640661","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640664":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640664","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640666":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640666","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640668":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640668","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640676":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640676","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640732":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640732","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640793":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640793","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640796":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640796","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640798":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640798","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640799":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640813":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640813","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640814":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640814","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640836":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640836","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40640838":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40640838","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6}}},"BUS319-L-Su-02-0":{"trip_order":["40640198","40640090","40640194","40640091","40640193","40640092","40640369","40640093","40640224","40640094","40640365","40640095","40640366","40640096","40640367","40640097","40640195","40640665","40640098","40640196","40640667","40640099","40640197","40640100","40640199","40640835","40640101","40640368","40640102","40640223","40640103","40640663","40640200","40640104","40640771","40640201","40640105","40640202","40640106","40640203","40640107","40640698","40640204","40640662","40640108","40640205","40640109","40640206","40640110","40640837","40640482","40640207","40640463","40640426","40640208","40640405","40640464","40640209","40640420","40640459","40640210","40640406","40640834","40640467","40640427","40640211","40640465","40640615","40640212","40640407","40640470","40640213","40640421","40640479","40640214","40640408","40640478","40640428","40640215","40640472","40640617","40640216","40640619","40640468","40640217","40640409","40640471","40640218","40640422","40640475","40640410","40640219","40640481","40640429","40640220","40640411","40640221","40639829","40640621","40640404","40639832","40640770","40640434","40640088","40640839","40639831"],"by_trip":{"40639829":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40639831":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639831","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40639832":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40639832","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640088":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:48 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640090":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640091":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640092":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640093":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640094":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640095":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640096":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640097":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640097","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640098":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640098","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640099":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640100":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640100","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640101":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640101","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640102":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640102","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640103":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640103","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640104":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640104","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640105":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640105","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640106":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640106","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640107":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640107","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640108":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640109":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640110":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640110","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640193":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640193","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640194":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640194","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640195":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640195","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640196":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640196","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640197":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640197","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640198":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640198","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640199":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640199","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640200":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640200","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640201":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640201","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640202":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640202","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640203":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640203","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640204":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640204","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640205":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640205","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640206":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640206","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640207":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640207","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640208":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640208","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640209":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640209","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640210":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640210","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640211":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640211","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640212":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640212","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640213":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640213","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640214":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640214","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640215":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640215","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640216":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640216","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640217":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640217","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640218":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640218","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640219":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640219","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640220":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640220","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640221":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640221","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640223":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640223","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640224":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640224","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640365":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640365","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640366":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640366","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640367":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640367","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640368":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640368","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640369":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640369","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640404":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640404","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640405":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640405","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640406":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640406","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640407":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640407","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640408":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640408","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640409":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640409","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640410":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640410","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640411":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640411","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640420":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640420","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640421":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640421","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640422":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640422","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640426":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640426","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640427":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640427","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640428":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640428","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640429":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640429","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640434":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640434","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640459":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640459","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640463":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640463","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640464":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640464","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640465":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640465","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640467":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640467","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640468":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640468","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640470":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40640470","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640471":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640471","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640472":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640472","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640475":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640475","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640478":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640478","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640479":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640479","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640481":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40640481","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40640482":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640482","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640615":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640615","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640617":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640617","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640619":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640619","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640621":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640621","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:20 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640662":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640663":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640665":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640665","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640667":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640667","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640698":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640698","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640770":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640771":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640771","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640834":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640834","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640835":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640835","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640837":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640837","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40640839":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40640839","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7}}},"BUS319-K-Sa-02-1":{"trip_order":["40673127","40673092","40673091","40673089","40672929","40673087","40672892","40671858","40673084","40672855","40672175","40672128","40672036","40672028","40672097","40672046","40672124","40672103","40672133","40672112","40672037","40672029","40672098","40672047","40672108","40672120","40673153","40672116","40672129","40672038","40672030","40672099","40672048","40672125","40672104","40672134","40672467","40672119","40672032","40672631","40673139","40672117","40672632","40672051","40672126","40672633","40672122","40672729","40672058","40672634","40672131","40673138","40672635","40672042","40672033","40672636","40672101","40672637","40672052","40672110","40672638","40672106","40672055","40672639","40673134","40672114","40672640","40672043","40672034","40672641","40672807","40672118","40673133","40672642","40672053","40672127","40672643","40672123","40672056","40672644","40673144","40672132","40672645","40672044","40672035","40672646","40672785","40672102","40672647","40672054","40672111","40672107","40672712","40672040","40672115","40672045","40672113","40672069","40672031","40672039","40672049","40672171","40672121","40672060","40672130","40672059","40672174","40672100","40672050","40672109","40672105","40672057","40672041"],"by_trip":{"40671858":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40671858","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672028":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672028","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672029":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672030":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672031":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672031","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672032":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672032","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672033":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672033","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672034":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672034","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672035":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672035","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672036":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672036","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672037":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672038":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672038","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672039":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672039","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672040":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672041":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:48 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672042":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672042","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672043":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672043","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672044":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672045":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672046":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672046","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672047":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672048":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672049":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672049","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672050":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672051":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672052":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672052","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672053":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672053","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672054":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672055":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672055","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672056":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672056","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672057":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:14 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672057","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672058":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672058","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672059":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672060":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672060","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672069":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672069","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672097":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672098":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672099":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672099","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672100":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672101":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672102":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672103":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672104":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672105":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672105","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672106":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672106","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672107":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672107","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672108":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672108","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672109":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672109","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672110":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672111":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672111","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672112":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672113":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672114":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672114","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672115":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672116":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672116","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672117":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672118":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672118","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672119":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672120":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672120","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672121":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672122":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672122","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672123":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672123","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672124":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672124","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672125":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672126":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672127":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672128":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672128","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672129":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672130":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672131":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672131","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672132":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40672132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":14},"40672133":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672134":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40672134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40672171":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672171","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672174":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40672174","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40672175":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672175","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672467":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672467","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672631":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672631","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672632":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672632","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672633":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672633","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672634":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672634","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672635":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672635","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672636":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672636","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672637":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672637","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672638":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672638","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672639":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672639","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672640":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672640","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672641":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672642":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672642","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672643":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672643","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672644":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672644","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672645":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672645","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672646":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672646","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672647":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672647","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672712":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672712","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672729":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672729","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672785":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672785","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672807":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672807","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672855":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672855","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672892":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40672929":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40672929","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673084":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673087":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673087","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673089":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673089","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673091":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673091","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673092":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673092","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673127":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673127","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673133":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673134":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673134","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673138":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673138","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673139":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673144":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673144","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40673153":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40673153","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6}}},"BUS319-K-Sa-02-0":{"trip_order":["40672179","40672062","40672081","40672148","40672157","40672147","40672149","40672146","40672063","40672145","40672064","40672144","40672066","40672143","40672067","40672142","40672068","40673136","40672141","40672140","40672070","40672139","40672071","40672138","40672072","40672137","40672073","40672466","40672136","40672648","40673148","40672074","40672135","40672649","40672075","40672096","40672650","40672076","40672651","40672095","40673140","40672077","40672652","40672094","40672653","40672078","40672093","40672654","40672079","40672092","40672655","40672829","40672080","40672656","40673137","40672091","40672173","40672657","40672090","40672758","40672658","40672061","40673132","40672089","40672659","40672172","40672150","40672660","40672170","40672661","40673141","40672155","40672169","40672662","40672088","40672896","40672663","40672168","40672086","40672664","40672167","40672085","40672857","40673012","40672166","40672084","40672165","40672154","40672164","40672153","40672163","40672152","40672162","40672151","40672161","40672156","40672160","40672082","40672159","40672083","40672158","40672087","40672176","40672065","40672806","40672991","40672180","40673166"],"by_trip":{"40672061":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672061","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672062":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672062","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672063":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672064":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672064","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672065":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:29 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672066":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672066","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672067":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672067","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672068":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672068","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672070":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672071":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672071","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672072":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672073":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672073","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672074":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672074","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672075":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672075","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672076":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672077":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672078":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672079":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672079","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672080":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672080","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672081":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672081","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672082":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672082","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672083":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672084":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672084","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672085":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672085","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672086":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672087":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672088":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672088","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672089":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672089","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672090":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672090","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672091":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672092":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672093":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672094":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672095":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672096":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672135":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672135","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672136":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672136","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672137":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672137","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672138":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672139":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672139","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672140":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672140","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672141":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672142":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672142","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672143":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672144":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672145":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672146":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672147":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672147","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672148":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672149":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672150":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672150","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672151":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672152":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672152","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672153":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672154":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672154","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672155":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672155","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672156":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672156","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672157":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672158":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672158","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672159":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672159","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672160":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672161":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672162":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672163":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672164":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672164","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672165":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672165","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672166":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672166","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672167":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672167","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672168":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672169":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672169","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672170":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672170","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672172":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672172","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672173":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40672173","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672176":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:04 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672176","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672179":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40672179","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":15},"40672180":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:49 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:51 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:53 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40672180","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":10},"40672466":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672466","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672648":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672648","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672649":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672649","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672650":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672650","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672651":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672651","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672652":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672652","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672653":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672653","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672654":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672654","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672655":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672655","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672656":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672656","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672657":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672657","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672658":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672658","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672659":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672659","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672660":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672660","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672661":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672661","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672662":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672662","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672663":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672663","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672664":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672664","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672758":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672758","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672806":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672806","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672829":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672829","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672857":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672857","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672896":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672896","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40672991":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40672991","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673012":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673012","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673132":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673132","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673136":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673136","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673137":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673137","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673140":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673140","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673141":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673141","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673148":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673148","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40673166":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:54 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40673166","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7}}},"BUS319-J-Wdy-02-1":{"trip_order":["40605845","40605841","40605784","40605769","40605753","40606113","40606449","40605999","40606392","40605799","40606170","40606115","40606253","40606026","40605997","40606169","40606119","40606071","40606030","40605995","40605981","40605804","40606167","40606299","40605598","40606117","40606073","40605579","40606027","40605576","40605994","40605580","40605980","40606337","40605575","40605868","40606159","40605556","40606121","40605581","40606082","40605557","40606020","40605992","40605558","40605978","40605582","40605866","40605559","40606164","40606112","40605542","40606051","40605583","40606023","40605988","40605560","40605976","40605543","40605864","40605584","40606158","40606110","40605561","40606045","40605544","40606029","40605585","40605985","40605973","40605562","40605545","40605862","40605586","40606050","40605563","40605546","40605989","40605587","40605972","40605564","40605860","40605547","40606037","40605970","40606047","40605967","40606044","40606207","40605968","40606040","40605960","40606041","40606388","40605965","40605641","40606142","40606079","40605963","40605691","40606147","40606048","40605951","40605667","40606136","40606064","40605915","40606445","40605736","40606125","40606059","40605945","40606135","40606075","40605914","40605624","40606152","40606234","40606061","40605694","40605938","40606133","40606062","40605932","40606132","40605510","40606054","40605513","40605933","40605493","40606137","40605514","40605515","40606084","40606014","40605494","40605925","40605516","40605890","40605517","40606130","40606100","40605495","40606081","40605518","40606009","40605928","40605519","40605496","40605885","40606150","40605520","40606101","40606250","40606080","40605521","40606017","40605491","40605947","40605507","40605898","40606126","40605512","40606102","40605492","40606068","40606013","40605511","40605959","40605509","40605874","40606139","40605490","40606104","40605508","40606066","40605506","40606016","40605942","40605895","40606140","40606098","40606067","40606012","40605944","40605891","40606129","40606097","40606085","40605946","40605882","40606090","40606074","40605920","40605887","40606103","40605921","40605903","40605612","40605943","40605896","40605930","40605894","40605937","40605880","40605919","40605897","40605949","40605901","40605912","40605876","40605953","40605875","40605909","40605871","40605948","40605892"],"by_trip":{"40605490":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605490","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605491":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605491","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605492":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605492","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605493":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605493","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605494":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605494","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605495":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605495","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605496":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605496","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605506":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605506","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605507":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605507","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605508":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605508","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605509":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605509","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605510":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605510","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605511":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605511","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605512":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605512","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605513":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605513","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605514":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605514","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605515":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605515","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605516":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605516","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605517":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605517","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605518":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605518","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605519":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605519","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605520":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605520","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605521":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605521","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605542":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605542","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605543":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605543","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605544":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605544","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605545":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605545","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605546":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605546","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605547":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605547","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605556":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605556","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605557":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605557","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605558":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605558","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605559":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605559","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605560":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605560","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605561":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605561","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605562":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605562","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605563":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605563","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605564":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605564","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605575":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605575","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605576":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605576","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605579":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605579","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605580":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605580","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605581":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605581","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605582":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605582","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605583":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605583","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605584":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605584","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605585":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605585","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605586":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605586","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605587":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605587","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605598":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605598","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605612":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605612","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40605624":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605624","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605641":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605641","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605667":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605667","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605691":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605691","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605694":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:46 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605694","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605736":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605736","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:29 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605753":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605753","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605769":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605769","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605784":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605784","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605799":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605799","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605804":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605804","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605841":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605841","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605845":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605845","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605860":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:36 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605860","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605862":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605862","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605864":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605864","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605866":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605866","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605868":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605868","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40605871":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605871","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605874":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605874","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605875":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:34 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:35 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605875","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605876":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:06 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605876","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605880":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605880","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605882":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605882","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605885":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605885","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605887":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:56 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605887","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605890":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605890","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605891":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605891","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605892":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605892","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605894":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605894","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605895":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605895","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605896":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:56 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605896","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605897":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:09 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605897","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605898":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605898","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605901":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605901","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605903":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605903","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605909":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:49 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:50 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605909","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605912":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605912","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605914":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:19 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605914","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605915":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605915","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605919":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605919","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605920":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605920","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605921":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:19 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605921","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605925":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605925","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605928":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605928","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605930":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605930","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605932":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605932","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605933":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605933","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605937":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:39 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605937","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605938":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605938","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605942":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605942","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605943":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605943","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605944":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605944","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605945":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605945","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605946":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605946","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605947":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605947","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605948":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:17 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605948","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605949":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:23 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605949","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605951":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605951","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40605953":{"schedules":[{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:17 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:19 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:20 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":8,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420038","name":"","id":"40605953","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":11},"40605959":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40605959","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40605960":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605960","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605963":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:25 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605963","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605965":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605965","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605967":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605967","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605968":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605968","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605970":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605970","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605972":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605972","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605973":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605973","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605976":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605976","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605978":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605978","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605980":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605980","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605981":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605981","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40605985":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605985","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605988":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605988","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605989":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605989","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605992":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605992","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605994":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605994","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605995":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605995","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40605997":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40605997","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":8},"40605999":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40605999","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606009":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606009","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606012":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606012","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606013":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:54 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606013","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606014":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606014","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606016":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606016","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606017":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606017","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606020":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606020","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606023":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606023","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606026":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606026","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606027":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606027","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606029":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606029","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606030":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606030","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606037":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606037","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606040":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:10 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:11 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606040","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:18 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606041":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606041","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606044":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:41 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606044","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:48 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606045":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606045","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606047":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:10 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:11 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606047","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:18 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606048":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:46 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:48 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:50 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606048","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606050":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:10 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606050","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606051":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606051","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606054":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:48 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606054","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606059":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:50 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606059","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606061":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606061","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606062":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:17 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606062","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606064":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606064","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606066":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606066","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606067":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606067","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606068":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606068","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606071":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606071","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606073":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606073","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606074":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606074","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606075":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:20 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606075","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606079":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:18 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:20 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606079","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606080":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:19 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606080","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606081":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606081","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606082":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606082","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606084":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:14 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:16 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:18 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606084","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606085":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606085","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606090":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:39 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:41 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606090","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:43 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606097":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606097","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606098":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606098","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606100":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:44 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606100","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606101":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606101","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606102":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606102","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606103":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:12 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:14 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606103","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606104":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606104","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606110":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606110","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606112":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606112","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606113":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606113","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606115":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606115","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606117":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606117","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606119":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606119","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":8},"40606121":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606121","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606125":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:40 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606125","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606126":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606126","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606129":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:07 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606129","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606130":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606130","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606132":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:28 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:38 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606132","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606133":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606133","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606135":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:10 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606135","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606136":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:00 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:10 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606136","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606137":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"03:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606137","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606139":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:08 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606139","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606140":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:28 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606140","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606142":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:10 PM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606142","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606147":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:30 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:40 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606147","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":12},"40606150":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"04:59 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606150","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606152":{"schedules":[{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:29 PM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":9,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":10,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420037","name":"","id":"40606152","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":11,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":13},"40606158":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606158","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606159":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606159","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606164":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606164","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606167":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:55 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606167","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":9},"40606169":{"schedules":[{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=31255","early_departure?":false},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":2,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031996,"latitude":42.345192,"is_child?":false,"id":"31257","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Tide St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31257&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:15 AM","stop_sequence":3,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave opp Harbor St","longitude":-71.034878,"latitude":42.346538,"is_child?":false,"id":"31256","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave opp Harbor St - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31256&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:16 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":5,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":6,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=31255","early_departure?":true},{"trip":{"shape_id":"7420015","name":"","id":"40606169","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:22 AM","stop_sequence":7,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=31255","early_departure?":false}],"duration":8},"40606170":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:47 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:49 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:51 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606170","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606207":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:40 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606207","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40606234":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606234","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40606250":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606250","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":9},"40606253":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606253","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606299":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606299","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606337":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606337","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40606388":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606388","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40606392":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606392","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6},"40606445":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:25 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606445","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":7},"40606449":{"schedules":[{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:32 AM","stop_sequence":1,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way before Manulife Building","longitude":-71.038846,"latitude":42.347188,"is_child?":false,"id":"74614","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way before Manulife Building - Silver Line - South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74614&origin=74614","early_departure?":false},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=74614","early_departure?":true},{"trip":{"shape_id":"7460006","name":"","id":"40606449","headsign":"South Station","direction_id":1,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":4,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=74614","early_departure?":false}],"duration":6}}},"BUS319-J-Wdy-02-0":{"trip_order":["40606114","40606000","40606168","40606116","40606025","40605998","40606163","40606120","40606069","40606031","40605996","40605982","40606162","40605596","40606118","40605578","40606070","40605577","40606022","40605993","40605591","40605979","40605565","40605867","40606157","40605572","40606109","40605595","40606038","40605569","40606021","40605554","40605986","40605977","40605594","40605865","40605573","40606161","40605553","40606111","40606046","40605593","40606024","40605567","40605987","40605550","40605975","40605863","40605592","40606160","40605571","40606108","40606043","40605552","40606028","40605588","40605991","40605568","40605974","40605548","40605861","40605590","40605570","40606055","40605551","40605990","40605589","40605971","40605566","40605549","40605859","40606035","40605969","40605846","40606042","40605966","40606354","40606039","40605773","40605961","40606034","40605962","40606036","40606465","40605964","40605770","40606124","40606087","40605911","40605842","40606146","40606056","40605800","40605950","40606134","40606272","40606077","40605754","40605917","40606128","40606065","40605958","40606143","40606076","40605935","40606414","40606153","40606063","40605939","40606148","40606052","40605931","40606131","40605523","40605537","40606049","40605497","40605924","40605522","40606144","40605527","40606058","40605498","40606006","40605525","40605922","40605906","40605528","40606141","40605500","40606099","40605526","40606060","40606300","40606011","40605529","40605926","40605499","40605888","40605535","40606127","40606095","40605536","40606057","40605503","40606007","40605534","40605934","40605886","40605533","40606151","40605502","40606093","40606086","40605531","40606010","40605532","40605941","40605873","40605501","40606149","40605530","40606096","40606083","40605524","40606008","40605940","40605900","40606145","40606092","40606078","40606015","40605927","40605889","40606138","40606094","40606072","40605803","40605918","40605884","40606091","40605623","40606053","40605923","40605881","40606105","40605957","40605893","40605642","40605929","40605883","40605936","40605877","40605913","40606338","40605899","40605916","40606249","40605878","40605952","40605902","40605956","40605905","40605954","40605904","40605910","40605872","40605670","40605955","40605879","40605735"],"by_trip":{"40605497":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605497","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605498":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605498","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605499":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605499","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605500":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605500","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605501":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605501","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605502":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:49 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605502","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605503":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605503","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605522":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605522","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605523":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:45 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:47 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605523","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605524":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605524","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605525":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605525","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605526":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605526","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605527":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:19 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:23 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605527","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605528":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605528","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605529":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:04 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605529","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605530":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:18 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605530","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605531":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:59 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605531","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605532":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605532","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605533":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605533","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605534":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605534","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605535":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605535","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605536":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:24 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605536","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605537":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:52 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605537","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"03:58 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605548":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605548","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605549":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605549","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605550":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605550","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605551":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605551","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605552":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605552","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605553":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605553","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605554":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605554","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605565":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605565","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605566":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605566","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605567":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605567","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605568":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605568","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605569":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605569","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605570":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605570","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605571":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605571","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605572":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605572","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605573":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605573","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605577":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605577","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605578":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605578","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605588":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605588","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605589":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:29 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605589","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605590":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605590","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605591":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605591","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605592":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605592","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605593":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605593","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605594":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605594","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605595":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605595","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605596":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605596","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605623":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:51 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605623","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605642":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605642","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605670":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605670","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605735":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:02 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:04 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:06 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605735","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:08 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605754":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605754","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605770":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:08 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605770","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605773":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:56 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605773","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:03 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605800":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605800","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605803":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605803","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40605842":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605842","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605846":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40605846","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40605859":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:44 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:47 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:48 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:49 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605859","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605861":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605861","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605863":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605863","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605865":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605865","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605867":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605867","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605872":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605872","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:25 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605873":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:15 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605873","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605877":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:32 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605877","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605878":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605878","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605879":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605879","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:01 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605881":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605881","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605883":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605883","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605884":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605884","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605886":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605886","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605888":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:08 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:16 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605888","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605889":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605889","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605893":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605893","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605899":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:56 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:03 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605899","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605900":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605900","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:48 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605902":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605902","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605904":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605904","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605905":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605905","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605906":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:46 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605906","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605910":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605910","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:10 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605911":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605911","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40605913":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605913","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605916":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:11 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:17 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605916","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605917":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:34 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:36 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:38 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:41 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:42 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:43 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605917","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:47 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40605918":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605918","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605922":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605922","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605923":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605923","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605924":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:03 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605924","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605926":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:03 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:11 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:12 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605926","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605927":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605927","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605929":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605929","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605931":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605931","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605934":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605934","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605935":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:37 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:40 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:42 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605935","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:44 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605936":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605936","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605939":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605939","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605940":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:32 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:40 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605940","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605941":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:04 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605941","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40605950":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605950","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:17 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40605952":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605952","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605954":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:33 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:36 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:38 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605954","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605955":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:30 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:34 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:38 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:39 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605955","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605956":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:03 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:08 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:10 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605956","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605957":{"schedules":[{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:25 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420017","name":"","id":"40605957","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605958":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:04 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:06 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:08 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:11 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:12 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:13 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40605958","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40605961":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605961","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605962":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605962","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605964":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:05 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:07 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:09 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:12 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:13 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:15 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605964","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:19 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605966":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605966","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605969":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605969","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605971":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605971","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605974":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:05 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:06 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:08 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605974","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:11 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605975":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:34 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605975","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:40 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605977":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:04 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:06 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605977","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:09 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605979":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:35 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605979","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:38 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605982":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:02 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605982","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605986":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:58 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:59 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:01 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:02 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605986","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605987":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:29 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:30 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:32 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:33 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605987","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:36 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605990":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:27 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:30 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:31 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:32 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:33 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:34 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605990","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:37 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605991":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:00 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:01 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:03 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:04 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605991","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:07 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605993":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:29 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605993","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:33 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605996":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605996","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40605998":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:25 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40605998","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606000":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:46 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:54 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606000","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606006":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:35 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606006","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:39 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606007":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:28 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:36 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:37 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606007","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:40 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606008":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:27 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:36 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606008","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606010":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606010","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606011":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:06 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:07 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606011","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:10 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606015":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:04 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606015","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606021":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606021","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:00 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606022":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606022","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606024":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:24 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:25 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:27 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:28 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606024","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:31 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606025":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:18 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606025","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606028":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:55 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:56 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:58 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:59 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606028","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:02 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606031":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:43 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606031","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:57 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606034":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:30 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606034","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:34 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606035":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:00 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606035","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:04 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606036":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:01 PM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606036","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:04 PM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606038":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:49 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:52 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606038","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:56 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606039":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:50 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:52 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:54 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:57 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:58 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:59 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:00 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:01 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606039","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"11:04 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606042":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:20 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:22 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:24 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:27 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:28 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:29 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:30 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:31 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606042","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"10:34 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606043":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:51 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:52 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:54 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606043","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:57 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606046":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:20 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:21 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:23 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606046","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:26 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606049":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606049","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606052":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606052","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606053":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606053","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"07:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606055":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:14 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:16 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:18 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:21 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:22 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:23 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:24 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:25 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606055","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"09:28 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606056":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606056","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:07 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606057":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606057","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606058":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606058","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606060":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606060","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606063":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606063","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606065":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:01 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:02 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:03 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606065","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606069":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:48 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606069","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606070":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:18 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606070","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606072":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:27 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:31 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606072","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606076":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606076","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:35 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606077":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606077","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606078":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:52 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:00 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606078","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606083":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:22 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:30 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606083","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606086":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:53 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:01 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606086","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606087":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:24 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:31 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:32 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:33 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606087","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:37 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606091":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:50 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:53 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:54 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:55 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606091","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606092":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:47 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:55 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:56 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606092","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:58 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606093":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606093","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606094":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606094","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:28 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606095":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:26 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:27 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606095","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:30 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606096":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:25 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606096","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:29 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606099":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:57 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606099","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606105":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:18 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:20 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:22 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606105","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"08:24 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606108":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:41 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:47 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:48 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:50 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606108","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:53 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606109":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:37 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:44 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:45 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:47 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:48 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606109","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:51 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606111":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:08 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:15 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:16 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:18 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:19 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606111","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:22 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606114":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:36 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:38 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:40 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606114","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606116":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:10 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:11 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:13 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606116","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:17 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606118":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:05 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:15 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606118","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606120":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:39 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:40 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:41 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606120","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:45 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606124":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606124","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606127":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606127","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606128":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606128","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606131":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:42 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606131","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606134":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606134","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"01:27 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606138":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606138","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:23 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606141":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606141","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606143":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:14 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:16 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:18 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:21 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:22 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:23 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606143","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606144":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:13 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:15 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:17 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:20 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:21 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:22 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606144","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"04:25 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606145":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:42 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:44 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:46 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:49 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:50 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:51 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606145","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:53 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606146":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:44 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:46 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:48 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:51 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:52 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:53 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606146","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"12:57 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":13},"40606148":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606148","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"03:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606149":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:19 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:20 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:21 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606149","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606151":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606151","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":12},"40606153":{"schedules":[{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:47 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:50 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:51 PM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:52 PM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420016","name":"","id":"40606153","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"02:54 PM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":11},"40606157":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:32 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:34 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:36 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:39 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:40 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:41 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:42 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:43 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606157","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:46 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606160":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:35 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:37 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:39 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:42 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:43 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:44 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:45 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:46 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606160","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:49 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606161":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:03 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:05 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:07 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:10 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:11 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:12 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:13 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:14 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606161","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"08:17 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606162":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:59 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:01 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:03 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:06 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:07 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:08 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:09 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:10 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606162","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"07:13 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606163":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:24 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:26 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:28 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:31 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:32 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:33 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:34 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:35 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606163","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:38 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606168":{"schedules":[{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:55 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:57 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"05:59 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:02 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:03 AM","stop_sequence":5,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Harbor St","longitude":-71.035301,"latitude":42.346634,"is_child?":false,"id":"247","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Harbor St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Northern Ave and Harbor St, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=247&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:04 AM","stop_sequence":6,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Northern Ave @ Tide St","longitude":-71.031986,"latitude":42.34508,"is_child?":false,"id":"30249","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Northern Ave @ Tide St - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30249&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":7,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"23 Drydock Ave","longitude":-71.030268,"latitude":42.344649,"is_child?":false,"id":"30250","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"23 Drydock Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"21 Dry Dock Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30250&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":8,"stop":{"type":"stop","station?":false,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"27 Drydock Ave","longitude":-71.028419,"latitude":42.344706,"is_child?":false,"id":"30251","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":null,"closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=30251&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:05 AM","stop_sequence":9,"stop":{"type":"stop","station?":false,"platform_name":"Design Center","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Black Falcon Ave","longitude":-71.027213,"latitude":42.344232,"is_child?":false,"id":"31259","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Black Falcon Ave - Silver Line - SL2 Design Center","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":null,"accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31259&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:06 AM","stop_sequence":10,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"88 Black Falcon","longitude":-71.026335,"latitude":42.343753,"is_child?":false,"id":"31258","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"88 Black Falcon - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"88 Black Falcon Ave, Boston, MA 02210","accessibility":["unknown"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=31258&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7420039","name":"","id":"40606168","headsign":"Drydock","direction_id":0,"bikes_allowed?":true},"time":"06:09 AM","stop_sequence":11,"stop":{"type":"stop","station?":false,"platform_name":"South Station","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Drydock Ave @ Design Center Place","longitude":-71.034476,"latitude":42.3446,"is_child?":false,"id":"31255","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Drydock Ave @ Design Center Place - Silver Line - SL2 South Station","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Black Falcon Ave and Design Center Pl, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"SL2","long_name":"Design Center - South Station","id":"742","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Design Center","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=31255&origin=place-sstat","early_departure?":false}],"duration":14},"40606249":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:12 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:14 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:16 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606249","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:18 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606272":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:23 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:26 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:28 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606272","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"01:30 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40606300":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:54 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:56 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"04:58 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606300","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"05:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606338":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:48 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:50 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:52 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606338","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"09:54 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":6},"40606354":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:44 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:47 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:49 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606354","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"10:51 AM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40606414":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:38 PM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:41 PM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:43 PM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606414","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"02:45 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7},"40606465":{"schedules":[{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:53 AM","stop_sequence":1,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[{"utilization":null,"payment":{"monthly_rate":"$445 regular, $150 overnight","mobile_app":null,"methods":["Credit/Debit Card","Cash"],"daily_rate":"Hourly: 30 min: $5, 1 hr: $10, 1.5 hrs: $15, 2 hrs: $20, 2.5 hrs: $25, 3+ hrs: $30 | Daily Max: $30 | Early Bird (in by 8:30 AM, out by 6 PM): $26 | Nights/Weekends: $10"},"note":null,"name":"South Station Bus Terminal Garage","manager":{"url":"https://www.propark.com/propark-locator2/south-station-garage/","phone":"617-345-0202","name":"ProPark","contact":"ProPark"},"longitude":-71.055963,"latitude":42.349838,"capacity":{"type":"Garage","total":210,"accessible":4},"address":null}],"parent_id":null,"note":null,"name":"South Station","longitude":-71.055242,"latitude":42.352271,"is_child?":false,"id":"place-sstat","has_fare_machine?":true,"has_charlie_card_vendor?":true,"fare_facilities":["fare_media_assistant","fare_vending_machine","ticket_window"],"description":null,"closed_stop_info":null,"child_ids":["70079","70080","74611","74617","South Station","South Station-01","South Station-02","South Station-03","South Station-04","South Station-05","South Station-06","South Station-07","South Station-08","South Station-09","South Station-10","South Station-11","South Station-12","South Station-13","door-sstat-atlantic","door-sstat-bus","door-sstat-dewey","door-sstat-finctr","door-sstat-main","door-sstat-outmain","door-sstat-reserve","door-sstat-summer","door-sstat-usps","node-382-lobby","node-382-rl","node-386-lobby","node-387-lobby","node-388-lobby","node-388-sl","node-389-lobby","node-389-rl","node-390-rl","node-390-sl","node-398-rl","node-398-sl","node-399-lobby","node-399-middle","node-400-middle","node-400-rl","node-411-lobby","node-411-sl","node-419-lobby","node-419-middle","node-420-middle","node-420-rl","node-424-lobby","node-6476-ground","node-6476-lobby","node-901-lobby","node-901-rl","node-901-sl","node-918-lobby","node-918-rl","node-918-sl","node-919-rl","node-919-sl","node-926-lobby","node-927-rl","node-927-sl","node-949-lobby","node-sstat-382stair-lobby","node-sstat-382stair-rl","node-sstat-388stair-lobby","node-sstat-388stair-sl","node-sstat-389stair-lobby","node-sstat-389stair-rl","node-sstat-390stair-rl","node-sstat-390stair-sl","node-sstat-398stair-rl","node-sstat-398stair-sl","node-sstat-399stair-lobby","node-sstat-399stair-middle","node-sstat-400sl-middle","node-sstat-400sl-sl","node-sstat-400stair-middle","node-sstat-400stair-rl","node-sstat-411stair-lobby","node-sstat-411stair-sl","node-sstat-419stair-lobby","node-sstat-419stair-middle","node-sstat-420sl-middle","node-sstat-420sl-sl","node-sstat-420stair-middle","node-sstat-420stair-rl","node-sstat-918stair-lobby","node-sstat-918stair-sl","node-sstat-919stair-rl","node-sstat-919stair-sl","node-sstat-alewife-farepaid","node-sstat-alewife-fareunpaid","node-sstat-ashbrain-farepaid","node-sstat-ashbrain-fareunpaid","node-sstat-bldgescdown-ground","node-sstat-bldgescdown-lobby","node-sstat-bldgescup-ground","node-sstat-bldgescup-lobby","node-sstat-bldgstair-ground","node-sstat-bldgstair-lobby","node-sstat-cr-lobby","node-sstat-deweystair-lobby","node-sstat-finctrstair-lobby","node-sstat-north-farepaid","node-sstat-north-fareunpaid","node-sstat-outmainstair-lobby","node-sstat-reservestair-lobby","node-sstat-south-farepaid","node-sstat-south-fareunpaid"],"bike_storage":["bike_storage_cage"],"address":"700 Atlantic Ave, Boston, MA 02110","accessibility":["accessible","escalator_both","elevator","fully_elevated_platform"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-sstat&origin=place-sstat","early_departure?":false},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:56 AM","stop_sequence":2,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Courthouse","longitude":-71.04685,"latitude":42.35245,"is_child?":false,"id":"place-crtst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74612","74616","door-crtst-north","door-crtst-south"],"bike_storage":[],"address":"Seaport Blvd and Pittsburg St, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-crtst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"11:58 AM","stop_sequence":3,"stop":{"type":"station","station?":true,"platform_name":null,"platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"World Trade Center","longitude":-71.04246,"latitude":42.34863,"is_child?":false,"id":"place-wtcst","has_fare_machine?":true,"has_charlie_card_vendor?":false,"fare_facilities":["fare_vending_machine"],"description":null,"closed_stop_info":null,"child_ids":["74613","74615","door-wtcst-congress","door-wtcst-wtc","node-401-landing","node-401-top","node-402-landing","node-402-lobby","node-403-lobby","node-403-platform","node-404-lobby","node-404-platform","node-934-lobby","node-935-lobby","node-935-platform","node-936-lobby","node-936-platform","node-wtcst-farepaid","node-wtcst-fareunpaid","node-wtcst-ibstairs-lobby","node-wtcst-ibstairs-platform","node-wtcst-obstairs-lobby","node-wtcst-obstairs-platform","node-wtcst-paidlobbycenter","node-wtcst-wtcbstairs-landing","node-wtcst-wtcbstairs-lobby","node-wtcst-wtctstairs-landing","node-wtcst-wtctstairs-top"],"bike_storage":["bike_storage_rack_covered"],"address":"Congress St and World Trade Center Ave, Boston, MA","accessibility":["accessible","escalator_up","elevator"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":0,"last_stop?":false,"flag?":false,"fare_link":"/fares/bus_subway?destination=place-wtcst&origin=place-sstat","early_departure?":true},{"trip":{"shape_id":"7460007","name":"","id":"40606465","headsign":"Silver Line Way","direction_id":0,"bikes_allowed?":true},"time":"12:00 PM","stop_sequence":4,"stop":{"type":"stop","station?":false,"platform_name":"Airport/Design Center/Chelsea","platform_code":null,"parking_lots":[],"parent_id":null,"note":null,"name":"Silver Line Way after Manulife Building","longitude":-71.038814,"latitude":42.347056,"is_child?":false,"id":"74624","has_fare_machine?":false,"has_charlie_card_vendor?":false,"fare_facilities":[],"description":"Silver Line Way after Manulife Building - Silver Line - Airport/Design Center/Chelsea","closed_stop_info":null,"child_ids":[],"bike_storage":[],"address":"Silver Line Way and Starboard Way, Boston, MA 02210","accessibility":["accessible"]},"route":{"type":3,"name":"Silver Line Way - South Station","long_name":"Silver Line Way - South Station","id":"746","direction_names":{"0":"Outbound","1":"Inbound"},"direction_destinations":{"0":"Silver Line Way","1":"South Station"},"description":"key_bus_route","custom_route?":false},"price":"$2.40","pickup_type":1,"last_stop?":true,"flag?":false,"fare_link":"/fares/bus_subway?destination=74624&origin=place-sstat","early_departure?":false}],"duration":7}}}} \ No newline at end of file diff --git a/apps/site/assets/ts/schedule/components/__schedule.d.ts b/apps/site/assets/ts/schedule/components/__schedule.d.ts index bdb1f00222..cf22de891b 100644 --- a/apps/site/assets/ts/schedule/components/__schedule.d.ts +++ b/apps/site/assets/ts/schedule/components/__schedule.d.ts @@ -41,11 +41,21 @@ export interface SchedulePageData { } export interface ServiceSchedule { - [key: string]: ServiceScheduleByDirection; + [key: string]: ServiceScheduleInfo; +} + +export interface ScheduleInfo { + schedules: ScheduleWithFare[]; + duration: string; +} + +export interface ScheduleWithFare extends Schedule { + price: string; + fare_link: string; } export interface ServiceScheduleByTrip { - [key: string]: Schedule[]; + [key: string]: ScheduleInfo; } export interface ServiceScheduleInfo { @@ -53,11 +63,6 @@ export interface ServiceScheduleInfo { trip_order: string[]; } -export interface ServiceScheduleByDirection { - service_id: string; - "0": ServiceScheduleInfo; - "1": ServiceScheduleInfo; -} export interface ScheduleNote { peak_service: string; offpeak_service: string; diff --git a/apps/site/assets/ts/schedule/components/schedule-finder/ScheduleTable.tsx b/apps/site/assets/ts/schedule/components/schedule-finder/ScheduleTable.tsx new file mode 100644 index 0000000000..7cb522837c --- /dev/null +++ b/apps/site/assets/ts/schedule/components/schedule-finder/ScheduleTable.tsx @@ -0,0 +1,55 @@ +import React, { ReactElement } from "react"; +import { ServiceScheduleInfo } from "../__schedule"; +import TableRow from "./TableRow"; + +const ScheduleTable = ({ + schedule +}: { + schedule: ServiceScheduleInfo; +}): ReactElement => { + if (schedule.trip_order.length === 0) { + return ( +
+ There is no scheduled service for this time period. +
+ ); + } + const firstTrip = schedule.trip_order[0]; + const lastTrip = + schedule.trip_order.length > 1 + ? schedule.trip_order[schedule.trip_order.length - 1] + : null; + + return ( + <> +
+
First Trip
+ {schedule.by_trip[firstTrip].schedules[0].time} + {lastTrip && ( + <> +
Last Trip
+ {schedule.by_trip[lastTrip].schedules[0].time} + + )} +
+ + + + + {schedule.by_trip[firstTrip].schedules[0].route.type === 2 && ( + + )} + + + + + {schedule.trip_order.map((tripId: string) => ( + + ))} + +
DepartsTrainDestination
+ + ); +}; + +export default ScheduleTable; diff --git a/apps/site/assets/ts/schedule/components/schedule-finder/ServiceSelector.tsx b/apps/site/assets/ts/schedule/components/schedule-finder/ServiceSelector.tsx index b91222e44a..0e8bcf211e 100644 --- a/apps/site/assets/ts/schedule/components/schedule-finder/ServiceSelector.tsx +++ b/apps/site/assets/ts/schedule/components/schedule-finder/ServiceSelector.tsx @@ -7,11 +7,7 @@ import React, { useRef } from "react"; import SelectContainer from "./SelectContainer"; -import { - ServiceWithServiceDate, - Schedule, - DirectionId -} from "../../../__v3api"; +import { ServiceWithServiceDate, DirectionId } from "../../../__v3api"; import { ServicesKeyedByGroup, groupServiceByDate, @@ -22,9 +18,7 @@ import { serviceDays, hasMultipleWeekdaySchedules } from "../../../helpers/service"; -import { ServiceScheduleInfo } from "../__schedule"; -import { RoutePillSmall } from "./UpcomingDepartures"; -import { modeIcon } from "../../../helpers/icon"; +import ScheduleTable from "./ScheduleTable"; const optGroupNames: ServiceOptGroup[] = ["current", "holiday", "other"]; @@ -61,45 +55,6 @@ const serviceDescription = ( ); }; -const TableRow = ({ - schedule -}: { - schedule: Schedule; -}): ReactElement | null => { - if (schedule.route.type === 2) return ; - return ( - - - {schedule.time} - - -
- -
- {schedule.trip.headsign} - - - ); -}; - -const CrTableRow = ({ - schedule -}: { - schedule: Schedule; -}): ReactElement => ( - - -
{schedule.time}
- - - {schedule.trip.name} - - - {modeIcon(schedule.route.id)} {schedule.trip.headsign} - - -); - const getTodaysScheduleId = ( servicesByOptGroup: ServicesKeyedByGroup ): string => { @@ -216,49 +171,17 @@ export const ServiceSelector = ({ - {isLoading &&
Loading...
} + {isLoading && ( +
+
Loading...
+
+ )} {!isLoading && selectedServiceSchedule && ( - + )} ); }; -export const ScheduleTable = ({ - schedule -}: { - schedule: ServiceScheduleInfo; -}): ReactElement => { - const firstTrip = schedule.trip_order[0]; - const lastTrip = schedule.trip_order[schedule.trip_order.length - 1]; - - return ( - <> -
-
First Trip
- {schedule.by_trip[firstTrip][0].time} -
Last Trip
- {schedule.by_trip[lastTrip][0].time} -
- - - - - {schedule.by_trip[firstTrip][0].route.type === 2 && ( - - )} - - - - - {schedule.trip_order.map((tripId: string) => ( - - ))} - -
DepartsTrainDestination
- - ); -}; - export default ServiceSelector; diff --git a/apps/site/assets/ts/schedule/components/schedule-finder/TableRow.tsx b/apps/site/assets/ts/schedule/components/schedule-finder/TableRow.tsx new file mode 100644 index 0000000000..a0b2260cd5 --- /dev/null +++ b/apps/site/assets/ts/schedule/components/schedule-finder/TableRow.tsx @@ -0,0 +1,219 @@ +import React, { useState, ReactElement } from "react"; +import { ScheduleWithFare, ScheduleInfo } from "../__schedule"; +import { RoutePillSmall } from "./UpcomingDepartures"; +import { modeIcon, caret } from "../../../helpers/icon"; +import { handleReactEnterKeyPress } from "../../../helpers/keyboard-events"; + +const totalMinutes = (schedules: ScheduleInfo): string => schedules.duration; + +const TripInfo = ({ + schedules +}: { + schedules: ScheduleInfo; +}): ReactElement => { + const lastTrip = schedules.schedules[schedules.schedules.length - 1]; + return ( + + +
+
+ Trip length +
+ {schedules.schedules.length} stops, {totalMinutes(schedules)} minutes + total +
+
+
+ Fare +
+ {lastTrip.price} + + View fares + +
+ + + ); +}; + +const BusTableRow = ({ + schedules +}: { + schedules: ScheduleInfo; +}): ReactElement => { + const [expanded, setExpanded] = useState(false); + const firstSchedule = schedules.schedules[0]; + const onClick = (): void => setExpanded(!expanded); + + return ( + <> + handleReactEnterKeyPress(e, onClick)} + > + + {firstSchedule.time} + + +
+ +
+ {firstSchedule.trip.headsign} + + + {caret( + `c-expandable-block__header-caret${expanded ? "--white" : ""}`, + expanded + )} + + + {expanded && ( + + + + + + + + + + + + {schedules.schedules.map((schedule: ScheduleWithFare) => ( + + + + + ))} + +
Stops + Arrival +
+ + {schedule.stop.name} + + + {schedule.time} +
+ + + )} + + ); +}; + +const CrTableRow = ({ + schedules +}: { + schedules: ScheduleInfo; +}): ReactElement => { + const [expanded, setExpanded] = useState(false); + const firstSchedule = schedules.schedules[0]; + const onClick = (): void => setExpanded(!expanded); + + return ( + <> + handleReactEnterKeyPress(e, onClick)} + > + +
{firstSchedule.time}
+ + {firstSchedule.trip.name && ( + + {firstSchedule.trip.name} + + )} + + {modeIcon(firstSchedule.route.id)} {firstSchedule.trip.headsign} + + + {caret( + `c-expandable-block__header-caret${expanded ? "--white" : ""}`, + expanded + )} + + + {expanded && ( + + + + + + + + + + + + + {schedules.schedules.map( + (schedule: ScheduleWithFare, index: number) => ( + + + + + + ) + )} + +
+ Stops + + Fare + + Arrival +
+ + {schedule.stop.name} + + + {index === 0 ? "" : schedule.price} + + {schedule.time} +
+ + + )} + + ); +}; + +const TableRow = ({ + schedules +}: { + schedules: ScheduleInfo; +}): ReactElement | null => { + if (schedules.schedules[0].route.type === 3) + return ; + return ; +}; + +export default TableRow; diff --git a/apps/site/lib/site/base_fare.ex b/apps/site/lib/site/base_fare.ex index 372ac12d1f..6da9f45959 100644 --- a/apps/site/lib/site/base_fare.ex +++ b/apps/site/lib/site/base_fare.ex @@ -13,14 +13,19 @@ defmodule Site.BaseFare do @default_filters [reduced: nil, duration: :single_trip] - @spec base_fare(Route.t(), Stops.Stop.id_t(), Stops.Stop.id_t(), (Keyword.t() -> [Fare.t()])) :: + @spec base_fare( + Route.t() | map, + Stops.Stop.id_t(), + Stops.Stop.id_t(), + (Keyword.t() -> [Fare.t()]) + ) :: String.t() | nil def base_fare(route, origin_id, destination_id, fare_fn \\ &Fares.Repo.all/1) def base_fare(nil, _, _, _), do: nil - def base_fare(%Route{type: route_type} = route, origin_id, destination_id, fare_fn) do + def base_fare(route, origin_id, destination_id, fare_fn) do route_filters = - route_type + route.type |> Route.type_atom() |> name_or_mode_filter(route, origin_id, destination_id) @@ -34,7 +39,7 @@ defmodule Site.BaseFare do [mode: :subway] end - defp name_or_mode_filter(:bus, %Route{id: route_id}, origin_id, _destination_id) do + defp name_or_mode_filter(:bus, %{id: route_id}, origin_id, _destination_id) do name = cond do Fares.inner_express?(route_id) -> :inner_express_bus diff --git a/apps/site/lib/site_web/controllers/schedule/schedule_api.ex b/apps/site/lib/site_web/controllers/schedule/schedule_api.ex index 4e43c0cf4d..3bf9cff44f 100644 --- a/apps/site/lib/site_web/controllers/schedule/schedule_api.ex +++ b/apps/site/lib/site_web/controllers/schedule/schedule_api.ex @@ -1,6 +1,15 @@ defmodule SiteWeb.ScheduleController.ScheduleApi do + @moduledoc """ + API for retrieving schedules by trip for a service defined by date + """ use SiteWeb, :controller + alias Fares.Format + alias Routes.Route + alias Schedules.Repo + alias Site.{BaseFare} + import SiteWeb.ViewHelpers, only: [cms_static_page_path: 2] + def show(conn, %{"id" => route_id, "date" => date, "direction_id" => direction_id}) do {:ok, date} = Date.from_iso8601(date) schedule_data = get_schedules(route_id, date, direction_id) @@ -10,18 +19,85 @@ defmodule SiteWeb.ScheduleController.ScheduleApi do @spec get_schedules(binary, any, any) :: %{by_trip: map, trip_order: [any]} def get_schedules(route_id, date, direction_id) do - schedules = - Enum.map( - Schedules.Repo.by_route_ids([route_id], date: date, direction_id: direction_id), - &Map.update!(&1, :route, fn route -> Routes.Route.to_json_safe(route) end) + services = + [route_id] + |> Repo.by_route_ids(date: date, direction_id: direction_id) + |> Enum.map(&Map.update!(&1, :route, fn route -> Route.to_json_safe(route) end)) + + ordered_trips = services |> Enum.sort_by(& &1.time) |> Enum.map(& &1.trip.id) |> Enum.uniq() + + services_by_trip = + services + |> Enum.group_by(& &1.trip.id) + + services_by_trip_with_fare = + services_by_trip + |> Stream.map(fn {trip_id, service} -> {trip_id, fares_for_service(service)} end) + |> Stream.map(fn {trip_id, service} -> {trip_id, duration_for_service(service)} end) + |> Stream.map(fn {trip_id, service} -> {trip_id, formatted_time(service)} end) + |> Enum.into(%{}) + + %{by_trip: services_by_trip_with_fare, trip_order: ordered_trips} + end + + def fares_for_service(schedules) do + origin = List.first(schedules) + + schedules + |> Enum.map( + &Map.merge( + &1, + fares_for_service(origin.route, origin.stop.id, &1.stop.id) ) + ) + end + + def duration_for_service(schedules) do + first = List.first(schedules).time + last = List.last(schedules).time + %{schedules: schedules, duration: Timex.diff(last, first, :minutes)} + end - schedules_by_trip = + def formatted_time(%{schedules: schedules, duration: duration}) do + time_formatted_schedules = schedules |> Enum.map(&Map.update!(&1, :time, fn time -> Timex.format!(time, "{0h12}:{m} {AM}") end)) - |> Enum.group_by(& &1.trip.id) - ordered_trips = schedules |> Enum.sort_by(& &1.time) |> Enum.map(& &1.trip.id) |> Enum.uniq() - %{by_trip: schedules_by_trip, trip_order: ordered_trips} + %{schedules: time_formatted_schedules, duration: duration} + end + + @spec fares_for_service(map, String.t(), String.t()) :: map + def fares_for_service(route, origin, destination) do + %{ + price: route |> BaseFare.base_fare(origin, destination) |> Format.price(), + fare_link: + fare_link( + Route.type_atom(route.type), + origin, + destination + ) + } + end + + def fare_link(:bus, _origin, _destination) do + cms_static_page_path(SiteWeb.Endpoint, "/fares/bus-fares") + end + + def fare_link(:subway, _origin, _destination) do + cms_static_page_path(SiteWeb.Endpoint, "/fares/subway-fares") + end + + def fare_link(:commuter_rail, origin, destination) do + fare_path(SiteWeb.Endpoint, :show, :commuter_rail, %{ + origin: origin, + destination: destination + }) + end + + def fare_link(:ferry, origin, destination) do + fare_path(SiteWeb.Endpoint, :show, :ferry, %{ + origin: origin, + destination: destination + }) end end diff --git a/apps/site/test/site_web/controllers/schedule/schedule_api_test.exs b/apps/site/test/site_web/controllers/schedule/schedule_api_test.exs new file mode 100644 index 0000000000..3eedd600e2 --- /dev/null +++ b/apps/site/test/site_web/controllers/schedule/schedule_api_test.exs @@ -0,0 +1,59 @@ +defmodule SiteWeb.ScheduleController.ScheduleApiTest do + use SiteWeb.ConnCase + + @moduletag :external + + describe "ScheduleApi" do + test "schedules are returned for a date for bus", %{conn: conn} do + date = Util.now() |> Date.to_iso8601() + path = schedule_api_path(conn, :show, %{id: 111, direction_id: 0, date: date}) + + response = + conn + |> get(path) + |> json_response(200) + + assert response["trip_order"] + assert response["by_trip"] + end + + test "schedules are returned for a date for subway", %{conn: conn} do + date = Util.now() |> Date.to_iso8601() + path = schedule_api_path(conn, :show, %{id: "Red", direction_id: 0, date: date}) + + response = + conn + |> get(path) + |> json_response(200) + + assert response["trip_order"] + assert response["by_trip"] + end + + test "schedules are returned for a date for CR", %{conn: conn} do + date = Util.now() |> Date.to_iso8601() + path = schedule_api_path(conn, :show, %{id: "CR-Kingston", direction_id: 0, date: date}) + + response = + conn + |> get(path) + |> json_response(200) + + assert response["trip_order"] + assert response["by_trip"] + end + + test "schedules are returned for a date for ferry", %{conn: conn} do + date = Util.now() |> Date.to_iso8601() + path = schedule_api_path(conn, :show, %{id: "Boat-F1", direction_id: 0, date: date}) + + response = + conn + |> get(path) + |> json_response(200) + + assert response["trip_order"] + assert response["by_trip"] + end + end +end